Fix formatting of OrderRow type definition (#27509)

This commit is contained in:
Dimitri Mitropoulos 2026-01-09 05:09:39 -05:00 committed by GitHub
parent 2f046ee848
commit db4340d9a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,9 +27,9 @@ For example, providing an `OrderRow` type as a type parameter to [`D1PreparedSta
```ts
// Row definition
type OrderRow = {
Id: string;
CustomerName: string;
OrderDate: number;
Id: string;
CustomerName: string;
OrderDate: number;
};
// Elsewhere in your application