UNPKG

@minimaltech/node-infra

Version:

Minimal Technology NodeJS Infrastructure - Loopback 4 Framework

12 lines (11 loc) 430 B
import { MixinTarget } from '@loopback/core'; import { Entity } from '@loopback/repository'; export declare const SoftDeleteModelMixin: <E extends MixinTarget<Entity>>(superClass: E) => { new (...args: any[]): { isDeleted?: boolean; getId: () => any; getIdObject: () => Object; toJSON: () => Object; toObject: (options?: import("@loopback/repository").Options) => Object; }; } & E;