UNPKG

208 BTypeScriptView Raw
1import { AnyArray } from "../any-array";
2import { AnyRecord } from "../any-record";
3export type StrictOmit<Type extends AnyRecord, Keys extends keyof Type> = Type extends AnyArray ? never : Omit<Type, Keys>;