1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-05 11:40:06 +00:00
Files
adapter/src/types/WriteStream.ts

5 lines
115 B
TypeScript

export interface WriteStream {
write: (content: string, callback: (err?: Error) => any) => void
path: string
}