PascalCase: CamelCase<Value> extends string
    ? Capitalize<CamelCase<Value>>
    : CamelCase<Value>

Converts a string literal to pascal-case.

Type Parameters

  • Value
import type {PascalCase} from 'type-fest';

// Simple

const someVariable: PascalCase<'foo-bar'> = 'FooBar';

// Advanced

type PascalCaseProps<T> = {
[K in keyof T as PascalCase<K>]: T[K]
};

interface RawOptions {
'dry-run': boolean;
'full_family_name': string;
foo: number;
}

const dbResult: CamelCasedProperties<ModelProps> = {
DryRun: true,
FullFamilyName: 'bar.js',
Foo: 123
};