@iotize/ionic
Version:
Iotize specific building blocks on top of @ionic/angular.
20 lines (19 loc) • 921 B
TypeScript
import * as i0 from "@angular/core";
export interface ActionItem {
label: string;
icon?: string;
value: any;
disabled?: boolean;
action: () => Promise<any>;
}
export declare class MonitoringActionsComponent {
segment: boolean;
actions: ActionItem[];
value?: any;
set checkedButtonIndex(index: number);
disabled: boolean;
color: string;
constructor();
static ɵfac: i0.ɵɵFactoryDeclaration<MonitoringActionsComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<MonitoringActionsComponent, "app-monitoring-actions", never, { "segment": { "alias": "segment"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "checkedButtonIndex": { "alias": "checkedButtonIndex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
}