sindresorhus/type-fest

KeysOfType

开放

#630 创建于 2023年6月5日

 (3 条评论) (2 个反应) (0 位负责人)TypeScript (471 个派生)batch import
help wantedtype addition

仓库指标

星标
 (12,328 个星标)
PR 合并指标
 (平均合并 3天 5小时) (30 天内合并 11 个 PR)

描述

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

贡献者指南