Skip to main content
Go to Latest
type alias TIntrinsicLiteral
import { type TIntrinsicLiteral } from "https://deno.land/x/openbox@1.1.5/deps.ts";
definition: T extends string ? M extends "Uncapitalize" ? Uncapitalize<T> : M extends "Capitalize" ? Capitalize<T> : M extends "Uppercase" ? Uppercase<T> : M extends "Lowercase" ? Lowercase<T> : string : T