/**
* `UnionKeys<T>` will distribute keys of an union to individual types.
* This should be used in conjuncture with distributive types.
*/exporttypeUnionKeys<T> = keyof T | (T extendsunknown ? keyof T : never);
//# sourceMappingURL=union_keys.d.ts.map