Skip to content

Commit ebbc3f4

Browse files
authored
Use correct typescript keyword
1 parent 8c53440 commit ebbc3f4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

types/tables.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,19 @@ type AnyTables = Record<string, any>;
7777

7878
type TablesOptions = {
7979
awsjsonMarshall?: {
80-
allowImpreciseNumbers?: bool,
81-
convertClassInstanceToMap?: bool,
82-
convertEmptyValues?: bool,
83-
convertTopLevelContainer?: bool,
84-
removeUndefinedValues?: bool
80+
allowImpreciseNumbers?: boolean,
81+
convertClassInstanceToMap?: boolean,
82+
convertEmptyValues?: boolean,
83+
convertTopLevelContainer?: boolean,
84+
removeUndefinedValues?: boolean
8585
},
8686
awsjsonUnmarshall?: {
87-
convertWithoutMapWrapper?: bool,
88-
wrapNumbers?: bool | ((value:string) => number | bigint | any)
87+
convertWithoutMapWrapper?: boolean,
88+
wrapNumbers?: boolean | ((value:string) => number | bigint | any)
8989
}
9090
};
9191

92-
export interface ArcTables {
92+
export interface ArcTables{
9393
<Tables = AnyTables>(options?: TablesOptions): Promise<ArcDB<Tables>>;
9494

9595
// legacy methods

0 commit comments

Comments
 (0)