UNPKG

@cloud-copilot/iam-collect

Version:

Collect IAM information from AWS Accounts

19 lines 583 B
export declare const defaultConfigFileName = "iam-collect.jsonc"; /** * Get the full path to the config file. * * @returns The full path to the config file. */ export declare function fullDefaultConfigPath(): string; /** * * @returns Whether the default config file exists */ export declare function defaultConfigExists(): boolean; type ConfigType = 'sqlite' | 'file'; export type DefaultConfigOptions = { type?: ConfigType; }; export declare function getDefaultConfig(options: DefaultConfigOptions): Promise<string>; export {}; //# sourceMappingURL=defaultConfig.d.ts.map