fix imports

This commit is contained in:
JOLIMAITRE Matthieu 2024-05-30 00:42:25 +02:00
parent 4707af4848
commit 1e6ca8845b
2 changed files with 5 additions and 5 deletions

View file

@ -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";

View file

@ -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>;