Skip to main content
Module

x/froebel/types.ts>Prefix

A strictly typed utility library.
Go to Latest
type alias Prefix
import { type Prefix } from "https://deno.land/x/froebel@v0.18.0/types.ts";

Type Parameters

STR extends string
PRE extends string
optional
CASE extends StringCase | void = void
definition: `${PRE}${CASE extends "snake" ? "_" : ""}${CASE extends "camel" ? Capitalize<STR> : STR}`