UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

6 lines (5 loc) 230 B
import { BaseEntity, RemoveOptions, SaveOptions } from "typeorm"; export declare abstract class Model extends BaseEntity { delete(options?: RemoveOptions): Promise<void>; softDelete(options: SaveOptions): Promise<void>; }