Metzploreur/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts
clement callaert 244d45ceb8 Version 2
2023-11-01 17:33:25 +01:00

10 lines
401 B
TypeScript

import { ParsedIniData } from "@smithy/types";
export interface SsoSessionInit {
/**
* The path at which to locate the ini config file. Defaults to the value of
* the `AWS_CONFIG_FILE` environment variable (if defined) or
* `~/.aws/config` otherwise.
*/
configFilepath?: string;
}
export declare const loadSsoSessionData: (init?: SsoSessionInit) => Promise<ParsedIniData>;