mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
12 lines
190 B
TypeScript
12 lines
190 B
TypeScript
import { Readable } from 'stream'
|
|
|
|
export type StreamDownloadFileResponse =
|
|
| {
|
|
success: true
|
|
readStream: Readable
|
|
}
|
|
| {
|
|
success: false
|
|
message: string
|
|
}
|