File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -77,19 +77,19 @@ type AnyTables = Record<string, any>;
7777
7878type 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
You can’t perform that action at this time.
0 commit comments