UNPKG

327 BTypeScriptView Raw
1export declare type FileInputOutput = {
2 input: string;
3 output: string;
4};
5export declare type AssetGlob = FileInputOutput & {
6 glob: string;
7 ignore?: string[];
8 dot?: boolean;
9};
10export declare function assetGlobsToFiles(assets: Array<AssetGlob | string>, rootDir: string, outDir: string): FileInputOutput[];