fix imports
This commit is contained in:
parent
4707af4848
commit
1e6ca8845b
2 changed files with 5 additions and 5 deletions
|
@ -1,3 +1,3 @@
|
|||
export { Collection, Entry } from "./entry.ts";
|
||||
export { Schema, Store } from "./store.ts";
|
||||
export type { EntryFor, Field, Property, QueriedFor, QueriedOf, Relation, Structure, Table } from "./typing.ts";
|
||||
export { Collection, Entry } from "./lib/entry.ts";
|
||||
export { Schema, Store } from "./lib/store.ts";
|
||||
export type { EntryFor, Field, Property, QueriedFor, QueriedOf, Relation, Structure, Table } from "./lib/typing.ts";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { Collection, Entry } from "../lib/entry.ts";
|
||||
import { Store } from "../lib/store.ts";
|
||||
import { Collection, Entry } from "./entry.ts";
|
||||
import { Store } from "./store.ts";
|
||||
|
||||
export type Table<Self extends Table<Self>> = {
|
||||
[Name: string]: Structure<Self>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue