/** Omit call and construct signatures */ export type OmitCall_ = { [K in keyof T]: T[K]; }; export type OmitCall = OmitCall_; /** Omit call and construct signatures */ export type $OmitCall_ = T extends any ? OmitCall_ : never; export type $OmitCall = $OmitCall_; //# sourceMappingURL=OmitCall.d.ts.map