UNPKG

dbweb-common

Version:

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

30 lines (29 loc) 1.01 kB
import { OnInit } from '@angular/core'; import { ElementService, ElementDataBill } from '../service/element.service'; import { FillAt } from '../service/bill-param'; import { VisibilityType } from 'dbweb-core'; import { ThemeService } from '../../services/theme.service'; export declare class SetPropertyBillComponent implements OnInit { elementSvr: ElementService; theme: ThemeService; hostClass: boolean; edtOption: any; svr: ElementDataBill; isReadonly: boolean; readonly SkipFill = FillAt.SkipFill; readonly FillAtOpen = FillAt.FillAtOpen; readonly FillAtSave = FillAt.FillAtSave; options: { Name: string; Value: string; }[]; primaryKeyFillOptions: { Name: string; Value: string; }[]; constructor(elementSvr: ElementService, theme: ThemeService); ngOnInit(): void; selectShow(e: VisibilityType): void; selectSave(e: FillAt): void; selectCloneShow(e: VisibilityType): void; }