UNPKG

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