import { Key } from "."; /** * object with properties `K` of type `V`. * if `K` is a union, exhaustively matches (i.e. requires all `T` in `K` to be keys) * * @since 0.0.2 */ export type Record = { [P in K]: V; }; //# sourceMappingURL=record.d.ts.map