Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
mindler-olli committed Mar 18, 2024
1 parent b621b63 commit 36b1eb3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions src/queryBuilders/queryQueryBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,6 @@ export class QueryQueryBuilder<
});
}

/* _getNode() {
return this.#props.node;
} */

scanIndexForward(
enabled: boolean
): QueryQueryBuilderInterface<DDB, Table, O> {
Expand Down
8 changes: 0 additions & 8 deletions src/typeHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,6 @@ export type StripKeys<T> = T extends { _PK: true }
? Omit<T, "_SK">
: T;

export type DeepStripKeys<T> = {
[P in keyof T]: T[P] extends Array<infer U>
? Array<DeepStripKeys<U>>
: T[P] extends object
? DeepStripKeys<T[P]>
: StripKeys<T[P]>;
};

/**
* Returns a subset of a table's properties.
*/
Expand Down

0 comments on commit 36b1eb3

Please sign in to comment.