mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-09-02 05:55:10 +09:00
feat!: Initial v2 commit
* Implemented editorconfig * Switched to ESM * Switched to a TypeScript workflow * Switched to projen for project management * Major code refactor * TODO: need tests
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
import { STSClient } from '@aws-sdk/client-sts';
|
||||
export declare function getStsClient(region: string, agent?: string): STSClient;
|
||||
export declare function sanitizeGithubActor(actor: string): string;
|
||||
export declare function sanitizeGithubWorkflowName(name: string): string;
|
||||
export declare function errorMessage(error: unknown): string;
|
||||
export declare function isDefined<T>(i: T | undefined | null): i is T;
|
||||
export declare function retryAndBackoff<T>(fn: () => Promise<T>, isRetryable: boolean, retries?: number, maxRetries?: number, base?: number): Promise<T>;
|
||||
Reference in New Issue
Block a user