Skip to content

Commit

Permalink
Merge pull request #28 from KoteiIto/fix/setConcurrentExecMax
Browse files Browse the repository at this point in the history
change setConcurrentExecMax to static method
  • Loading branch information
KoteiIto committed Mar 17, 2018
2 parents 2cbb0fa + 873bb93 commit dc811a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export interface AwsConfig {
export * from './lib/client';
export default class Athena {
static createClient: typeof createClient;
setConcurrentExecMax: typeof setConcurrentExecMax;
static setConcurrentExecMax: typeof setConcurrentExecMax;
}
export declare function createClient(clientConfig: AthenaClientConfig, awsConfig: AwsConfig): AthenaClient;
4 changes: 1 addition & 3 deletions build/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export * from './lib/client'

export default class Athena {
public static createClient = createClient
public setConcurrentExecMax = setConcurrentExecMax
public static setConcurrentExecMax = setConcurrentExecMax
}

export function createClient(
Expand Down

0 comments on commit dc811a7

Please sign in to comment.