export type Primitive = null | undefined | string | number | boolean | symbol | bigint; export type Required = T & { [P in K]-?: T[P]; }; export type LiteralUnion = LiteralType | (BaseType & { _?: never; });