- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
8 lines
350 B
TypeScript
8 lines
350 B
TypeScript
import RenderResult, { type RenderResultOptions } from '../render-result';
|
|
/**
|
|
* Flight Response is always set to RSC_CONTENT_TYPE_HEADER to ensure it does not get interpreted as HTML.
|
|
*/
|
|
export declare class FlightRenderResult extends RenderResult {
|
|
constructor(response: string | ReadableStream<Uint8Array>, options?: RenderResultOptions);
|
|
}
|