@tempots/std
SplitLiteral type
Splits a string literal type T
by a specified delimiter SplitBy
. Returns a tuple containing the split parts of the string.
Signature:
export type SplitLiteral<T extends string, SplitBy extends string> = FilterTuple<T extends `${infer A}${SplitBy}${infer B}` ? [...SplitLiteral<A, SplitBy>, ...SplitLiteral<B, SplitBy>] : [T], ''>;
References: FilterTuple, SplitLiteral