import { Includeable, Transaction } from "sequelize/types"; import dfw_user from "../../model/dfw_user.model"; import { Database } from "../modules/DatabaseManager"; export default class EntityHandler { private db; constructor(db: Database); dfw_user: { createAsync: (nick: string, email: string, password: string, transaction?: Transaction | undefined) => Promise; findAsync: (identifier: string | number, include?: Includeable[] | undefined) => Promise; }; }