UNPKG

dbweb-common

Version:

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

10 lines (9 loc) 258 B
import { ILabel } from './model'; export declare class Label implements ILabel { CategoryID: string; ID: string; Name: string; static fromInterface(data: ILabel): Label; displayLabel(): string; equal(data: Label): boolean; }