Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
type alias Camelize
Re-export
import { type Camelize } from "https://deno.land/x/discordeno@17.0.1/plugins/validations/deps.ts";
definition: [K in keyof Tin keyof CamelCase<string & K>]: T[K] extends Array<infer U> ? U extends { } ? Array<Camelize<U>> : T[K] : T[K] extends { } ? Camelize<T[K]> : never