Package: effect
Module: String
Concatenates two strings at the type level.
Example (Concatenating string literal types)
import type { String } from "effect"
// Type-level concatenation
type Result = String.Concat<"hello", "world"> // "helloworld"
Signature
type `${A}${B}` = `${A}${B}`
Since v2.0.0