/** * An empty object, which means that it does enforce the set of field names, defaulting to an empty set until * extended from, which then adds only those additional fields */ export type EmptyObject = Exclude<{ [K in keyof T]?: never; }, unknown[] | ((...args: unknown[]) => unknown) | null>; //# sourceMappingURL=EmptyObject.d.ts.map