/** * Type that combines unions of strings */ export type CombineStrings = TProp extends string ? TProps extends string ? `${TProp}.${TProps}` : never : never; //# sourceMappingURL=combineStrings.d.ts.map