We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd065e4 commit be42f7fCopy full SHA for be42f7f
website/src/routes/guides/(main-concepts)/schemas/index.mdx
@@ -96,7 +96,7 @@ const BlobSchema = blob(); // Blob
96
const DateSchema = date(); // Date
97
const MapSchema = map(string(), number()); // Map<string, number>
98
const ObjectSchema = object({ key: string() }); // { key: string }
99
-const RecordSchema = record(number()); // { [key: string]: number }
+const RecordSchema = record(number()); // Record<string, number>
100
const SetSchema = set(number()); // Set<number>
101
const TupleSchema = tuple([string(), number()]); // [string, number]
102
```
0 commit comments