UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

17 lines (16 loc) 663 B
import type { Item } from "../util/item.js"; import type { ValidatorType } from "../util/validate.js"; export declare const PERSON_SCHEMA: import("../schema/DataSchema.js").DataSchema<{ name: { first: /*elided*/ any; last: /*elided*/ any; }; birthday: string | null; }>; export type PersonData = ValidatorType<typeof PERSON_SCHEMA>; export declare const person1: Item<PersonData>; export declare const person2: Item<PersonData>; export declare const person3: Item<PersonData>; export declare const person4: Item<PersonData>; export declare const person5: Item<PersonData>; export declare const people: ReadonlyArray<Item<PersonData>>;