Skip to content

Commit b3ee8a6

Browse files
committed
Fix a typo
1 parent 584d53f commit b3ee8a6

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-
// Based on: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/5336057c43fcd14eabe7ae8536b51a7c7b2b21bf/types/lowercase-object-keys/index.d.ts
1+
/*! Based on @types/lowercase-object-keys. MIT License. See: 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)