UNPKG

@minimaltech/node-infra

Version:

Minimal Technology NodeJS Infrastructure - Loopback 4 Framework

17 lines (16 loc) 554 B
import { IdType } from '../common/types'; import { MixinTarget } from '@loopback/core'; import { Entity } from '@loopback/repository'; /** * @deprecated The method will soon deleted */ export declare const UserAuditMixinDeprecated: <E extends MixinTarget<Entity>>(superClass: E) => { new (...args: any[]): { createdBy: IdType; modifiedBy: IdType; getId: () => any; getIdObject: () => Object; toJSON: () => Object; toObject: (options?: import("@loopback/repository").Options) => Object; }; } & E;