UNPKG

dbweb-common

Version:

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

20 lines (19 loc) 663 B
import { OnInit, OnDestroy } from '@angular/core'; import { BillComponent } from '../bill/bill.component'; import { Subscription } from 'rxjs'; import { ThemeService, ThemeModel } from '../services/theme.service'; import { CurrentApiService } from 'dbweb-core'; export declare class NoticeComponent implements OnInit, OnDestroy { private theme; private api; bill: BillComponent; hostClass: boolean; options: any; subs: Subscription[]; themeModel: ThemeModel; content: string; contentHTML: string; constructor(theme: ThemeService, api: CurrentApiService); ngOnDestroy(): void; ngOnInit(): void; }