diff --git a/src/lib.ts b/src/lib.ts index f072a0b..88d33f4 100644 --- a/src/lib.ts +++ b/src/lib.ts @@ -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"; diff --git a/src/lib/typing.ts b/src/lib/typing.ts index 4fe8494..eafc993 100644 --- a/src/lib/typing.ts +++ b/src/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> = { [Name: string]: Structure;