export type ValueOf = T[keyof T]; export interface AllowAdditionalProperties { [x: string | number | symbol]: unknown; } type Primitive = null | undefined | string | number | boolean | symbol | bigint; export type LiteralUnion = LiteralType | (BaseType & Record); export type Entries = { [K in keyof T]: [K, T[K]]; }[keyof T][]; export {}; //# sourceMappingURL=utils.d.ts.map