helpers overview
Added in v0.6.0
Table of contents
helpers
RowLacks (type alias)
Encodes the constraint that a given object O
does not contain specific keys K
Signature
export type RowLacks<O, K extends string | number | symbol> = O & Record<Extract<keyof O, K>, never>
Added in v0.4.0