UNPKG

904 BTypeScriptView Raw
1import { Data } from './index';
2import * as _config from './config';
3import * as _build from './build';
4import * as _upgrade from './upgrade';
5import * as vfs from './FileSystem';
6export declare var config: typeof _config;
7export interface Data {
8 resources: vfs.Dictionary;
9 groups?: {
10 [groupName: string]: string[];
11 };
12 alias?: {
13 [aliasName: string]: string;
14 };
15}
16export declare var data: Data;
17export declare function print(): void;
18export declare namespace ResourceConfig {
19 var config: Data;
20 var typeSelector: (path: string) => string;
21 function addFile(r: any): void;
22 function getFile(filename: string): vfs.File;
23 function init(projectPath: any): Promise<{
24 resourceRoot: string;
25 resourceConfigFileName: any;
26 typeSelector: any;
27 }>;
28}
29export declare var build: typeof _build;
30export declare var upgrade: typeof _upgrade;