Skip to content

Commit

Permalink
Update packages/kit/types/helper.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored Jul 30, 2021
1 parent d3a17b6 commit 893ec64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kit/types/helper.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export type InferValue<T, Key extends keyof T, Default> = T extends Record<Key,
export type MaybePromise<T> = T | Promise<T>;
export type Rec<T = any> = Record<string, T>;
export type RecursiveRequired<T> = {
// Recursive implementation of Required utility type.
// Recursive implementation of TypeScript's Required utility type.
// will continue until it reaches a primitive or union
// with a Function in it, except for the 'vite' key
// which we want the end result to be just a function
Expand Down

0 comments on commit 893ec64

Please sign in to comment.