UNPKG

@acadix/setup

Version:

Acadix Learning Management System backend application project setup

11 lines (10 loc) 227 B
import { PoolOptions, Dialect } from "sequelize"; export default interface DB { name: string; user: string; pass: string; host: string; port: number; dialect: Dialect; pool: PoolOptions; }