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>
43 lines
1 KiB
Text
43 lines
1 KiB
Text
import type {CamelCase, CamelCaseOptions, DefaultCamelCaseOptions} from './camel-case';
|
|
import type {ApplyDefaultOptions} from './internal';
|
|
|
|
/**
|
|
Convert object properties to camel case but not recursively.
|
|
|
|
This can be useful when, for example, converting some API types from a different style.
|
|
|
|
@see CamelCasedPropertiesDeep
|
|
@see CamelCase
|
|
|
|
@example
|
|
```
|
|
import type {CamelCasedProperties} from 'type-fest';
|
|
|
|
interface User {
|
|
UserId: number;
|
|
UserName: string;
|
|
}
|
|
|
|
const result: CamelCasedProperties<User> = {
|
|
userId: 1,
|
|
userName: 'Tom',
|
|
};
|
|
|
|
const preserveConsecutiveUppercase: CamelCasedProperties<{fooBAR: string}, {preserveConsecutiveUppercase: false}> = {
|
|
fooBar: 'string',
|
|
};
|
|
```
|
|
|
|
@category Change case
|
|
@category Template literal
|
|
@category Object
|
|
*/
|
|
export type CamelCasedProperties<Value, Options extends CamelCaseOptions = {}> = Value extends Function
|
|
? Value
|
|
: Value extends Array<infer U>
|
|
? Value
|
|
: {
|
|
[K in keyof Value as
|
|
CamelCase<K, ApplyDefaultOptions<CamelCaseOptions, DefaultCamelCaseOptions, Options>>
|
|
]: Value[K];
|
|
};
|