UNPKG

1.54 kBTypeScriptView Raw
1export declare const ensureSlash: (filepath: any, needsSlash: boolean) => any;
2export declare const root: string;
3export declare const resolveApp: (to: string) => string;
4export declare const resolveOwn: (to: string) => string;
5export interface Paths {
6 root: string;
7 templates: string;
8 packageJson: string;
9 servedPath: (base: string) => string;
10 docz: string;
11 app: string;
12 cache: string;
13 appPublic: string;
14 appNodeModules: string;
15 appPackageJson: string;
16 appYarnLock: string;
17 ownNodeModules: string;
18 getDist: (dest: string) => string;
19 distPublic: (dest: string) => string;
20 importsJs: string;
21 rootJs: string;
22 indexJs: string;
23 indexHtml: string;
24 db: string;
25}
26export declare const templates: string;
27export declare const packageJson: string;
28export declare const servedPath: (base: string) => any;
29export declare const docz: string;
30export declare const app: string;
31export declare const cache: string;
32export declare const appPublic: string;
33export declare const appNodeModules: string;
34export declare const appPackageJson: string;
35export declare const appYarnLock: string;
36export declare const ownNodeModules: string;
37export declare const getDist: (dest: string) => string;
38export declare const distPublic: (dest: string) => string;
39export declare const importsJs: string;
40export declare const rootJs: string;
41export declare const indexJs: string;
42export declare const indexHtml: string;
43export declare const db: string;