import type { AlsoAccept } from '../../../type/index.js'; /** * Same as built-in Omit, but no template argument constraint on K * * - Does not work with index signatures */ export type $Omit_ = O extends any ? Omit : never; /** Discards index signatures */ export type $Omit> = $Omit_; //# sourceMappingURL=DistributedOmit.d.ts.map