11 lines
166 B
TypeScript
11 lines
166 B
TypeScript
/**
|
|
* Options for `StreamableFile`
|
|
*
|
|
* @publicApi
|
|
*/
|
|
export interface StreamableFileOptions {
|
|
type?: string;
|
|
disposition?: string;
|
|
length?: number;
|
|
}
|