UNPKG

@iotize/ionic

Version:

Iotize specific building blocks on top of @ionic/angular.

24 lines (23 loc) 978 B
import { OnDestroy } from '@angular/core'; import { Observable, Subscription } from 'rxjs'; import * as i0 from "@angular/core"; export interface TextCardComponentOptions { initialValue: any; } export declare class TextCardComponent implements OnDestroy { options: TextCardComponentOptions; title?: string; subtitle?: string; template?: string; unit?: string; icon?: string; color: string; subscription?: Subscription; set inputStream(stream: Observable<any>); value: any; error?: Error; constructor(); ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration<TextCardComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<TextCardComponent, "monitoring-text-card", never, { "options": "options"; "title": "title"; "subtitle": "subtitle"; "template": "template"; "unit": "unit"; "icon": "icon"; "color": "color"; "inputStream": "inputStream"; }, {}, never, never, false, never>; }