import { Dictionary, AnyJson } from '@salesforce/ts-types'; export type Key

= Extract; /** * The allowed types stored in a config store. */ export type ConfigValue = AnyJson; /** * The type of entries in a config store defined by the key and value type of {@link ConfigContents}. */ export type ConfigEntry = [string, ConfigValue]; /** * The type of content a config stores. */ export type ConfigContents = Dictionary;