Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
574 B
TypeScript
23 lines
574 B
TypeScript
/**
|
|
* 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;
|
|
/**
|
|
* The value that will be used for the `Content-Length` response header.
|
|
*/
|
|
length?: number;
|
|
}
|