/** * @public */ export type IniSection = Record; /** * @public * * @deprecated Please use {@link IniSection} */ export interface Profile extends IniSection { } /** * @public */ export type ParsedIniData = Record; /** * @public */ export interface SharedConfigFiles { credentialsFile: ParsedIniData; configFile: ParsedIniData; }