Skip to content

Commit

Permalink
rm extra test types
Browse files Browse the repository at this point in the history
  • Loading branch information
woltsu committed Mar 14, 2024
1 parent 3d21af9 commit 11ef37a
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/typeHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,17 +151,3 @@ export type ObjectKeyPaths<T> =
never
: // Leaf value reached, don't return anything
never;

type Table = {
userId: PartitionKey<string>;
dataTimestamp: SortKey<number>;
somethingElse: number;
someBoolean: boolean;
nested: {
someNestedKey: string;
};
};

type Keys = PickPk<Table>;

type Paths = ObjectKeyPaths<Table>;

0 comments on commit 11ef37a

Please sign in to comment.