UNPKG

slim-ef

Version:

An implementation of basic entity framework functionnalities in typescript

5 lines (4 loc) 290 B
import { DeepPartial } from './_internal.interface'; export declare function patch<T>(entityShema: new () => T): (entity: DeepPartial<T>) => T; export declare const With: typeof patch; export declare function patchM<T>(entityShema: new () => T): (...entities: DeepPartial<T>[]) => T[];