Merge pull request 'Use imports' (#1) from mrtsunami/debilus:master into master
Reviewed-on: #1
This commit is contained in:
commit
b8230f55b3
3 changed files with 6 additions and 4 deletions
|
@ -2,5 +2,8 @@
|
|||
"fmt": {
|
||||
"useTabs": true,
|
||||
"lineWidth": 120
|
||||
},
|
||||
"imports": {
|
||||
"zod": "https://deno.land/x/zod@v3.22.4/mod.ts"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import { z } from "https://deno.land/x/zod@v3.22.4/mod.ts";
|
||||
import { QueriedFor, QueriedOfField, Table } from "./typing.ts";
|
||||
import { z } from "zod";
|
||||
import { Store } from "./store.ts";
|
||||
import { StoredFor } from "./typing.ts";
|
||||
import { QueriedFor, QueriedOfField, StoredFor, Table } from "./typing.ts";
|
||||
|
||||
export class Entry<T extends Table<T>, S extends keyof T> {
|
||||
public readonly store;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import z from "https://deno.land/x/zod@v3.22.4/index.ts";
|
||||
import { z } from "zod";
|
||||
import { Collection, Entry } from "./entry.ts";
|
||||
import { QueriedOf, StoredOfField, Table } from "./typing.ts";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue