UNPKG

328 BTypeScriptView Raw
1interface IScript {
2 $: IScriptContent;
3}
4interface IScriptContent {
5 src: string;
6 type: string;
7 cache?: string;
8 validate?: string;
9}
10export declare function generateMetaEntries(files: string[], sourceMaps: boolean): IScript[];
11export declare function buildMeta(answers: IAnswer): void;
12export {};