Metzploreur/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts

11 lines
401 B
TypeScript
Raw Permalink Normal View History

2023-11-01 16:33:25 +00:00
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>;