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