1 | import { interfaces } from 'inversify';
|
2 | import URI from '../../common/uri';
|
3 | import { ContributionProvider } from '../../common/contribution-provider';
|
4 | export declare const PreferenceConfiguration: unique symbol;
|
5 | export interface PreferenceConfiguration {
|
6 | name: string;
|
7 | }
|
8 | export declare function bindPreferenceConfigurations(bind: interfaces.Bind): void;
|
9 | export declare class PreferenceConfigurations {
|
10 | protected readonly provider: ContributionProvider<PreferenceConfiguration>;
|
11 | getPaths(): string[];
|
12 | getConfigName(): string;
|
13 | protected sectionNames: string[] | undefined;
|
14 | getSectionNames(): string[];
|
15 | isSectionName(name: string): boolean;
|
16 | isAnyConfig(name: string): boolean;
|
17 | isSectionUri(configUri: URI | undefined): boolean;
|
18 | isConfigUri(configUri: URI | undefined): boolean;
|
19 | getName(configUri: URI): string;
|
20 | getPath(configUri: URI): string;
|
21 | createUri(folder: URI, configPath?: string, configName?: string): URI;
|
22 | }
|
23 |
|
\ | No newline at end of file |