Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarasikee committed Aug 13, 2022
1 parent cba6f72 commit b359f91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/userInitiale.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Column, Document, Model, Schema, TinyTable} from "../mod.ts"
import {Column, Document, Model, Schema, TinyTable} from "../tinydb.ts"

@TinyTable("users")
class User {
Expand Down Expand Up @@ -34,4 +34,4 @@ class User {
export type userDocument = User & Document

const userSchema = Schema.initializeSchema(User)
export const userModel = new Model<userDocument>(userSchema)
export const userModel = new Model<userDocument>(userSchema)

0 comments on commit b359f91

Please sign in to comment.