Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/credentials/credential_provider_chain.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class CredentialProviderChain extends Credentials {
/**
* Resolves the provider chain by searching for the first set of credentials in providers.
*/
resolve(callback:(err: AWSError, credentials: Credentials) => void): any;
resolve(callback:(err: AWSError, credentials: Credentials) => void): CredentialProviderChain;
/**
* Returns a list of credentials objects or functions that return credentials objects. If the provider is a function, the function will be executed lazily when the provider needs to be checked for valid credentials. By default, this object will be set to the defaultProviders.
*/
Expand Down
4 changes: 3 additions & 1 deletion ts/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"allowJs": true,
"target": "es5",
"module": "commonjs",
Expand All @@ -10,4 +12,4 @@
],
"noEmit": true
}
}
}