Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mmiller42 committed Jul 1, 2024
1 parent 174b41c commit d87f954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const keys = {
} as const;

type StorageKeys = {
[k in keyof typeof keys as typeof keys[k]]: k;
[k in keyof typeof keys as (typeof keys)[k]]: k;
};
type StorageKey = keyof StorageKeys;
type StorageKeyOf<K extends StorageKey = StorageKey> = StorageKeys[K];
Expand Down

0 comments on commit d87f954

Please sign in to comment.