Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
36 lines
941 B
Text
36 lines
941 B
Text
import type {CamelCaseOptions, DefaultCamelCaseOptions} from './camel-case';
|
|
import type {ApplyDefaultOptions} from './internal';
|
|
import type {PascalCase} from './pascal-case';
|
|
|
|
/**
|
|
Convert object properties to pascal case but not recursively.
|
|
|
|
This can be useful when, for example, converting some API types from a different style.
|
|
|
|
@see PascalCase
|
|
@see PascalCasedPropertiesDeep
|
|
|
|
@example
|
|
```
|
|
import type {PascalCasedProperties} from 'type-fest';
|
|
|
|
interface User {
|
|
userId: number;
|
|
userName: string;
|
|
}
|
|
|
|
const result: PascalCasedProperties<User> = {
|
|
UserId: 1,
|
|
UserName: 'Tom',
|
|
};
|
|
```
|
|
|
|
@category Change case
|
|
@category Template literal
|
|
@category Object
|
|
*/
|
|
export type PascalCasedProperties<Value, Options extends CamelCaseOptions = {}> = Value extends Function
|
|
? Value
|
|
: Value extends Array<infer U>
|
|
? Value
|
|
: {[K in keyof Value as PascalCase<K, ApplyDefaultOptions<CamelCaseOptions, DefaultCamelCaseOptions, Options>>]: Value[K]};
|