UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

23 lines (22 loc) • 585 B
/** * Options for `StreamableFile` * * @see [Streaming files](https://docs.nestjs.com/techniques/streaming-files) * * @publicApi */ export interface StreamableFileOptions { /** * The value that will be used for the `Content-Type` response header. * @default `"application/octet-stream"` */ type?: string; /** * The value that will be used for the `Content-Disposition` response header. */ disposition?: string | string[]; /** * The value that will be used for the `Content-Length` response header. */ length?: number; }