`${A}${B}`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"models
Source effect/String.ts:1341 lines
export type type Concat<
A extends string,
B extends string
> = `${A}${B}`
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"
Concat<function (type parameter) A in type Concat<A extends string, B extends string>A extends string, function (type parameter) B in type Concat<A extends string, B extends string>B extends string> = `${function (type parameter) A in type Concat<A extends string, B extends string>A}${function (type parameter) B in type Concat<A extends string, B extends string>B}`Referenced by 1 symbols