UNPKG

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