UNPKG

797 BTypeScriptView Raw
1import { Config } from '../types';
2export default class LocationProvider {
3 private readonly config;
4 bearerDir: string;
5 integrationRoot: string;
6 integrationRc: string;
7 constructor(config: Config);
8 integrationRootResourcePath(filename: string): string;
9 readonly srcViewsDir: string;
10 srcViewsDirResource(name: string): string;
11 readonly srcFunctionsDir: string;
12 buildViewsResourcePath(resource: string): string;
13 readonly buildViewsDir: string;
14 readonly buildViewsComponentsDir: string;
15 readonly buildTmpDir: string;
16 readonly buildFunctionsDir: string;
17 buildFunctionsResourcePath(resource: string): string;
18 readonly buildArtifactDir: string;
19 buildArtifactResourcePath(resource: string): string;
20 readonly authConfigPath: string;
21}