/** * Helper type to convert a string to a union of its characters. */ type StringToUnion = T extends `${infer F}${infer R}` ? F | StringToUnion : never; export default StringToUnion; //# sourceMappingURL=StringToUnion.d.ts.map