Files
bigtux 20a26affaa 📚 Documentação inicial do ALETHEIA
- 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
2026-02-10 15:08:15 -03:00

15 lines
625 B
JavaScript

import { RSC_CONTENT_TYPE_HEADER } from "../../client/components/app-router-headers";
import RenderResult from "../render-result";
/**
* Flight Response is always set to RSC_CONTENT_TYPE_HEADER to ensure it does not get interpreted as HTML.
*/ export class FlightRenderResult extends RenderResult {
constructor(response, options){
super(response, {
contentType: RSC_CONTENT_TYPE_HEADER,
waitUntil: options == null ? void 0 : options.waitUntil,
metadata: (options == null ? void 0 : options.metadata) ?? {}
});
}
}
//# sourceMappingURL=flight-render-result.js.map