(
profile: string,
options: CredentialsOptions = {},
)
| 96 | } |
| 97 | |
| 98 | export function readProfile( |
| 99 | profile: string, |
| 100 | options: CredentialsOptions = {}, |
| 101 | ): ProfileEntry | undefined { |
| 102 | const file = readCredentialsFile(options); |
| 103 | return file[profile]; |
| 104 | } |
| 105 | |
| 106 | export function writeProfile( |
| 107 | profile: string, |
no test coverage detected