shelving
Version:
Toolkit for using data in JavaScript.
26 lines (25 loc) • 695 B
TypeScript
import { Collection } from "../db/collection/Collection.js";
export * from "./basics.js";
export * from "./people.js";
export * from "./util.js";
export declare const BASICS_COLLECTION: Collection<"basics", string, {
str: string;
num: number;
group: "a" | "b" | "c";
tags: import("../index.js").ImmutableArray<string>;
odd: boolean;
even: boolean;
sub: {
str: /*elided*/ any;
num: /*elided*/ any;
odd: /*elided*/ any;
even: /*elided*/ any;
};
}>;
export declare const PEOPLE_COLLECTION: Collection<"people", string, {
name: {
first: /*elided*/ any;
last: /*elided*/ any;
};
birthday: string | null;
}>;