A
arktype2mo ago
san

array of objects?

How do you declare an array of objects?
5 Replies
san
sanOP2mo ago
nvm I'll stick to TypeBox, this is somehow way more complicated
GreggOD
GreggOD2mo ago
we are using the comprehensively and its turned out to be a good tool in our aresnal so far
Micha
Micha2mo ago
const arrays = type({
key: type({ name: "string" }, "[]")
})
const arrays = type({
key: type({ name: "string" }, "[]")
})
https://arktype.io/docs/objects#arrays
BozoWithTheBanjo
import { type } from "arktype";

const test = type({
name: "string",
}).array();

const test2 = type({ name: "string" }, "[]");

console.log(test.allows([{ name: "Arktype" }, { name: "Arktype2" }]));
console.log(test2.allows([{ name: "Arktype" }, { name: "Arktype2" }]));
import { type } from "arktype";

const test = type({
name: "string",
}).array();

const test2 = type({ name: "string" }, "[]");

console.log(test.allows([{ name: "Arktype" }, { name: "Arktype2" }]));
console.log(test2.allows([{ name: "Arktype" }, { name: "Arktype2" }]));
produces:
true
true
true
true

Did you find this page helpful?