Skip to content

Commit 893ec64

Browse files
authored
Update packages/kit/types/helper.d.ts
1 parent d3a17b6 commit 893ec64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/kit/types/helper.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export type InferValue<T, Key extends keyof T, Default> = T extends Record<Key,
3232
export type MaybePromise<T> = T | Promise<T>;
3333
export type Rec<T = any> = Record<string, T>;
3434
export type RecursiveRequired<T> = {
35-
// Recursive implementation of Required utility type.
35+
// Recursive implementation of TypeScript's Required utility type.
3636
// will continue until it reaches a primitive or union
3737
// with a Function in it, except for the 'vite' key
3838
// which we want the end result to be just a function

0 commit comments

Comments
 (0)