UNPKG

563 BTypeScriptView Raw
1import { Optional } from '@salesforce/ts-types';
2import { SfTokens } from '../stateAggregator';
3import { ConfigFile } from './configFile';
4import { ConfigContents, ConfigValue } from './configStore';
5export declare class TokensConfig extends ConfigFile<ConfigFile.Options, SfTokens> {
6 protected static encryptedKeys: RegExp[];
7 static getDefaultOptions(): ConfigFile.Options;
8 protected getMethod(contents: ConfigContents, key: string): Optional<ConfigValue>;
9 protected setMethod(contents: ConfigContents, key: string, value?: ConfigValue): void;
10}