1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-06 12:10:04 +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
}