I want to manually create an object of my Prisma schema
const order: Order = {
id: '1',
name: 'Name',
price: 99
}
...
// Somewhere in autogenerated file by Prisma
export type Order = {
id: string
name: string
price: Prisma.Decimal
}
But it throws an error
Type 'number' is not assignable to type 'Decimal'.
How to convert javascript number to Prisma Decimal type?