Skip to content

Commit 584d53f

Browse files
committed
Fix a typo
1 parent 99bde8e commit 584d53f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/LowercaseObjectKeys.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Baed on: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/5336057c43fcd14eabe7ae8536b51a7c7b2b21bf/types/lowercase-object-keys/index.d.ts
1+
// Based on: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/5336057c43fcd14eabe7ae8536b51a7c7b2b21bf/types/lowercase-object-keys/index.d.ts
22
export type LowercaseObjectKeys<T extends object> = {
33
[K in keyof T as K extends string ? Lowercase<K> : K]: T[K]
44
}

0 commit comments

Comments
 (0)