sindresorhus/type-fest

Add `Set` type

Open

#373 opened on Mar 8, 2022

View on GitHub
 (9 comments) (1 reaction) (0 assignees)TypeScript (471 forks)batch import
component:pathshelp wantedtype addition

Repository metrics

Stars
 (12,328 stars)
PR merge metrics
 (Avg merge 3d 5h) (11 merged PRs in 30d)

Description

Add Set type. Looks like Get

Example:

type InitValue = {}

type NewResult = Set<InitValue , 'level1.level2.level3',  number>

result:  {
 level1: {
   level2: {
     level3: number
   }
 }
}

Contributor guide