@minimaltech/node-infra
Version:
Minimal Technology NodeJS Infrastructure - Loopback 4 Framework
12 lines (11 loc) • 434 B
TypeScript
import { MixinTarget } from '@loopback/core';
import { Entity } from '@loopback/repository';
export declare const SoftPersistentMixin: <E extends MixinTarget<Entity>>(superClass: E) => {
new (...args: any[]): {
persistentState?: number;
getId: () => any;
getIdObject: () => Object;
toJSON: () => Object;
toObject: (options?: import("@loopback/repository").Options) => Object;
};
} & E;