Compare commits

..

No commits in common. "b8230f55b37e79c07381f22c2a1935acc7544a45" and "92b21e0ad39b3776b6af77b1be624207561b43fe" have entirely different histories.

3 changed files with 4 additions and 6 deletions

View file

@ -2,8 +2,5 @@
"fmt": { "fmt": {
"useTabs": true, "useTabs": true,
"lineWidth": 120 "lineWidth": 120
},
"imports": {
"zod": "https://deno.land/x/zod@v3.22.4/mod.ts"
} }
} }

View file

@ -1,6 +1,7 @@
import { z } from "zod"; import { z } from "https://deno.land/x/zod@v3.22.4/mod.ts";
import { QueriedFor, QueriedOfField, Table } from "./typing.ts";
import { Store } from "./store.ts"; import { Store } from "./store.ts";
import { QueriedFor, QueriedOfField, StoredFor, Table } from "./typing.ts"; import { StoredFor } from "./typing.ts";
export class Entry<T extends Table<T>, S extends keyof T> { export class Entry<T extends Table<T>, S extends keyof T> {
public readonly store; public readonly store;

View file

@ -1,4 +1,4 @@
import { z } from "zod"; import z from "https://deno.land/x/zod@v3.22.4/index.ts";
import { Collection, Entry } from "./entry.ts"; import { Collection, Entry } from "./entry.ts";
import { QueriedOf, StoredOfField, Table } from "./typing.ts"; import { QueriedOf, StoredOfField, Table } from "./typing.ts";