UNPKG

dbweb-common

Version:

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

15 lines (14 loc) 508 B
import { OnInit, OnDestroy } from '@angular/core'; import { MatCheckbox } from '@angular/material'; import { FormControlName } from '@angular/forms'; import { Subscription } from 'rxjs'; export declare class TrueFalseValueDirective implements OnInit, OnDestroy { private control; private matCheckBox; falseValue: any; trueValue: any; subs: Subscription[]; constructor(control: FormControlName, matCheckBox: MatCheckbox); ngOnDestroy(): void; ngOnInit(): void; }