Rocky_Mountain_Vending/.pnpm-store/v10/files/9b/31dcf50e9defa2de7fb0b0c66eba8a691bc290f407df7dbff6a4dd85056b640754f1194874b96ae69b56f100511890b6b20ccaa581c2737faad0b306bd7352
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

23 lines
441 B
Text

/**
Create a type with the keys of the given type changed to `string` type.
Use-case: Changing interface values to strings in order to use them in a form model.
@example
```
import type {Stringified} from 'type-fest';
type Car = {
model: string;
speed: number;
}
const carForm: Stringified<Car> = {
model: 'Foo',
speed: '101'
};
```
@category Object
*/
export type Stringified<ObjectType> = {[KeyType in keyof ObjectType]: string};