Gets the optional keys of T.
T
🦴 utilities
OptionalKeys<{ a: 1 }> // neverOptionalKeys<{ a?: 1, b: number }> // 'a' Copy
OptionalKeys<{ a: 1 }> // neverOptionalKeys<{ a?: 1, b: number }> // 'a'
Gets the optional keys of
T
.🦴 utilities