sindresorhus/type-fest

KeysOfType

Aperta

#630 aperta il 5 giu 2023

 (3 commenti) (2 reazioni) (0 assegnatari)TypeScript (471 fork)batch import
help wantedtype addition

Metriche repository

Star
 (12.328 stelle)
Metriche merge PR
 (Merge medio 3g 5h) (11 PR mergiate in 30 g)

Descrizione

  type KeysOfType<T, U> = {
    [K in keyof T]: T[K] extends U ? K : never;
  }[keyof T];

Guida contributor