From 1e6ca8845b0a5955b1f1e5a8e0fee5bf5da9a832 Mon Sep 17 00:00:00 2001 From: JOLIMAITRE Matthieu Date: Thu, 30 May 2024 00:42:25 +0200 Subject: [PATCH] fix imports --- src/lib.ts | 6 +++--- src/lib/typing.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) 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;