vtils

Home > types > OmitStrict

OmitStrict type

Similar to the builtin Omit, but checks the filter strictly.

Signature:

export declare type OmitStrict<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;