import { AnyRecord } from "../any-record";
export type NonEmptyObject<Object extends AnyRecord> = keyof Object extends never ? never : Object;
