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>
21 lines
667 B
Text
21 lines
667 B
Text
import type {WritableKeysOf} from './writable-keys-of';
|
|
|
|
/**
|
|
Creates a type that represents `true` or `false` depending on whether the given type has any writable fields.
|
|
|
|
This is useful when you want to create an API whose behavior depends on the presence or absence of writable fields.
|
|
|
|
@example
|
|
```
|
|
import type {HasWritableKeys, WritableKeysOf} from 'type-fest';
|
|
|
|
type UpdateService<Entity extends object> = {
|
|
removeField: HasWritableKeys<Entity> extends true
|
|
? (field: WritableKeysOf<Entity>) => Promise<void>
|
|
: never
|
|
}
|
|
```
|
|
|
|
@category Utilities
|
|
*/
|
|
export type HasWritableKeys<BaseType extends object> = WritableKeysOf<BaseType> extends never ? false : true;
|