Files
ng2-file-upload/build/node_modules/ng2-bootstrap/components/buttons/button-radio.d.ts
2016-02-02 18:42:21 +02:00

19 lines
601 B
TypeScript

import { OnInit, ElementRef } from 'angular2/core';
import { ControlValueAccessor, NgModel } from 'angular2/common';
export declare class ButtonRadio implements ControlValueAccessor, OnInit {
cd: NgModel;
el: ElementRef;
private btnRadio;
private uncheckable;
private isActive;
private onClick();
constructor(cd: NgModel, el: ElementRef);
ngOnInit(): void;
protected value: any;
writeValue(value: any): void;
onChange: (_: any) => void;
onTouched: () => void;
registerOnChange(fn: (_: any) => {}): void;
registerOnTouched(fn: () => {}): void;
}