Skip to content

Commit 2295c0e

Browse files
committed
Removed unused imports
1 parent 849b5c6 commit 2295c0e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/snippets/batch/parser-integration/dynamoDBExtended.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
DynamoDBStreamChangeRecordBase,
99
DynamoDBStreamRecord,
1010
} from '@aws-lambda-powertools/parser/schemas/dynamodb';
11-
import type { DynamoDBRecord, DynamoDBStreamHandler } from 'aws-lambda';
11+
import type { DynamoDBStreamHandler } from 'aws-lambda';
1212
import { z } from 'zod';
1313

1414
const customSchema = DynamoDBStreamRecord.extend({

examples/snippets/batch/parser-integration/kinesisExtended.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
KinesisDataStreamRecord,
99
KinesisDataStreamRecordPayload,
1010
} from '@aws-lambda-powertools/parser/schemas/kinesis';
11-
import type { KinesisStreamHandler, KinesisStreamRecord } from 'aws-lambda';
11+
import type { KinesisStreamHandler } from 'aws-lambda';
1212
import { z } from 'zod';
1313

1414
const customSchema = KinesisDataStreamRecord.extend({

examples/snippets/batch/parser-integration/sqsExtended.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
} from '@aws-lambda-powertools/batch';
66
import { JSONStringified } from '@aws-lambda-powertools/parser/helpers';
77
import { SqsRecordSchema } from '@aws-lambda-powertools/parser/schemas';
8-
import type { SQSHandler, SQSRecord } from 'aws-lambda';
8+
import type { SQSHandler } from 'aws-lambda';
99
import { z } from 'zod';
1010

1111
const customSchema = SqsRecordSchema.extend({

0 commit comments

Comments
 (0)