- 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
14 lines
457 B
TypeScript
14 lines
457 B
TypeScript
export type BuildManifest = {
|
|
devFiles: readonly string[];
|
|
ampDevFiles: readonly string[];
|
|
polyfillFiles: readonly string[];
|
|
lowPriorityFiles: readonly string[];
|
|
rootMainFiles: readonly string[];
|
|
pages: {
|
|
'/_app': readonly string[];
|
|
[page: string]: readonly string[];
|
|
};
|
|
ampFirstPages: readonly string[];
|
|
};
|
|
export declare function getPageFiles(buildManifest: BuildManifest, page: string): readonly string[];
|