systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
16 lines (15 loc) • 768 B
TypeScript
import { ElementRef, EventEmitter } from '@angular/core';
import * as i0 from "@angular/core";
export declare class ToggleButtonComponent {
private element;
private checked;
get isChecked(): boolean;
set isChecked(val: boolean);
isCheckedChange: EventEmitter<any>;
disabled: boolean;
constructor(element: ElementRef);
getId(): any;
doToggle(event: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent, "systelab-toggle-button", never, { "isChecked": { "alias": "isChecked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "isCheckedChange": "isCheckedChange"; }, never, ["*"], false, never>;
}