UNPKG

dbweb-common

Version:

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

11 lines (10 loc) 417 B
import { IElementViewDigest } from './model'; import { OwnerByEnum } from '../../services/eleview/types/model'; export declare class ElementViewDigest implements IElementViewDigest { OwnerBy: OwnerByEnum; Owner: string; Name: string; static fromInterface(data: IElementViewDigest): ElementViewDigest; displayLabel(): string; canModify(userName: string, deptCode: string): boolean; }