UNPKG

lynx-framework

Version:

lynx is a NodeJS framework for Web Development, based on decorators and the async/await support.

10 lines (9 loc) 290 B
import { BaseEntity as ORMBaseEntity } from "typeorm"; export default class BaseEntity extends ORMBaseEntity { createdAt: Date; updatedAt: Date; hiddenFields: string[]; removeHiddenField(field: string): void; addHiddenField(field: string): void; serialize(): any; }