UNPKG

@sqb/connect

Version:

Multi-dialect database connection framework written with TypeScript

9 lines (8 loc) 232 B
import { REPOSITORY_KEY } from './orm.const.js'; export declare class BaseEntity { private [REPOSITORY_KEY]?; constructor(partial?: any); destroy(): Promise<boolean>; exists(): Promise<boolean>; toJSON(): any; }