Skip to content

Instantly share code, notes, and snippets.

@maxgfr
Created February 12, 2024 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxgfr/a089fbd909b276528fc18adc3d19506a to your computer and use it in GitHub Desktop.
Save maxgfr/a089fbd909b276528fc18adc3d19506a to your computer and use it in GitHub Desktop.
Useful types in typescript
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