UNPKG

481 BTypeScriptView Raw
1import {
2 AwsCredentialIdentity,
3 ChecksumConstructor,
4 HashConstructor,
5} from "@aws-sdk/types";
6export declare const createScope: (
7 shortDate: string,
8 region: string,
9 service: string
10) => string;
11export declare const getSigningKey: (
12 sha256Constructor: ChecksumConstructor | HashConstructor,
13 credentials: AwsCredentialIdentity,
14 shortDate: string,
15 region: string,
16 service: string
17) => Promise<Uint8Array>;
18export declare const clearCredentialCache: () => void;