UNPKG

dbweb-common

Version:

用`yarn add dbweb-common`安装,不要忘记修改`angular.json`里的 `architect\build\options\assets`,加上

24 lines (23 loc) 643 B
import { ElementApiService, PrimaryKeySetting } from 'dbweb-core'; interface GetClonePKParam { OldSignPK: string; EleName: string; } interface BillCloneParam { EleName: string; OldSignPK: string; NewPK: { [key: string]: string; }; } interface BillCloneResult { Ok: boolean; Error: string; } export declare class BillCloneBackfaceService { private api; constructor(api: ElementApiService); getClonePK(param: GetClonePKParam): import("rxjs").Observable<PrimaryKeySetting[]>; billClone(param: BillCloneParam): import("rxjs").Observable<BillCloneResult>; } export {};