mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-05 11:40:06 +00:00
5 lines
115 B
TypeScript
5 lines
115 B
TypeScript
export interface WriteStream {
|
|
write: (content: string, callback: (err?: Error) => any) => void
|
|
path: string
|
|
}
|