import { type Str } from "https://deno.land/x/rimbu@0.13.5/typical/index.ts";
const { AppendTwo } = Str;
Convenience type to represent the concatenation of three string types.
Examples
Example 1
Example 1
AppendTwo<'abc', 'def', 'ghi'> => 'abcdefghi'
AppendTwo<'abc', 'd' | 'e', 'fgh'> => 'abcdfgh' | 'abcefgh'