UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

23 lines (22 loc) 395 B
/** * @public */ export type IniSection = Record<string, string | undefined>; /** * @public * * @deprecated Please use {@link IniSection} */ export interface Profile extends IniSection { } /** * @public */ export type ParsedIniData = Record<string, IniSection>; /** * @public */ export interface SharedConfigFiles { credentialsFile: ParsedIniData; configFile: ParsedIniData; }