Created
February 12, 2024 11:06
-
-
Save maxgfr/a089fbd909b276528fc18adc3d19506a to your computer and use it in GitHub Desktop.
Useful types in typescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type CamelCase<S extends string> = | |
S extends `${infer P1}_${infer P2}${infer P3}` | |
? `${Lowercase<P1>}${Uppercase<P2>}${CamelCase<P3>}` | |
: Lowercase<S>; | |
export type KeysToCamelCase<T> = { | |
[K in keyof T as CamelCase<string & K>]: T[K] extends {} | |
? KeysToCamelCase<T[K]> | |
: T[K]; | |
}; | |
export type ValueOf<T> = T[keyof T]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment