Skip to content

Commit 165d454

Browse files
committed
remove unnecessary extstore s3client alias.
1 parent 5a15795 commit 165d454

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

contrib/external-storage-s3-aws-sdk/src/aws-sdk-client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { PutObjectCommand, GetObjectCommand, HeadObjectCommand } from '@aws-sdk/client-s3';
2-
import type { S3Client as AwsS3Client } from '@aws-sdk/client-s3';
2+
import type { S3Client } from '@aws-sdk/client-s3';
33
import type { S3StorageDriverClient, S3RequestOptions } from '@temporalio/external-storage-s3';
44

55
/**
@@ -9,7 +9,7 @@ import type { S3StorageDriverClient, S3RequestOptions } from '@temporalio/extern
99
* @experimental
1010
*/
1111
export class AwsSdkS3StorageDriverClient implements S3StorageDriverClient {
12-
constructor(private readonly client: AwsS3Client) {}
12+
constructor(private readonly client: S3Client) {}
1313

1414
describe(): Record<string, string> {
1515
const region = this.client.config?.region;

0 commit comments

Comments
 (0)