UNPKG

@salesforce/core

Version:

Core libraries to interact with SFDX projects, orgs, and APIs.

11 lines (10 loc) 563 B
import { Optional } from '@salesforce/ts-types'; import { SfTokens } from '../stateAggregator'; import { ConfigFile } from './configFile'; import { ConfigContents, ConfigValue } from './configStore'; export declare class TokensConfig extends ConfigFile<ConfigFile.Options, SfTokens> { protected static encryptedKeys: RegExp[]; static getDefaultOptions(): ConfigFile.Options; protected getMethod(contents: ConfigContents, key: string): Optional<ConfigValue>; protected setMethod(contents: ConfigContents, key: string, value?: ConfigValue): void; }