- 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
288 B
TypeScript
14 lines
288 B
TypeScript
type Options = {
|
|
dev: boolean;
|
|
};
|
|
export type AppBuildManifest = {
|
|
pages: Record<string, string[]>;
|
|
};
|
|
export declare class AppBuildManifestPlugin {
|
|
private readonly dev;
|
|
constructor(options: Options);
|
|
apply(compiler: any): void;
|
|
private createAsset;
|
|
}
|
|
export {};
|