UNPKG

@kushki/ng-suka

Version:

<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>

16 lines (15 loc) 438 B
import { ButtonRadio } from './button-radio.component'; /** * Used to emit changes performed on a `ButtonRadio`. */ export declare class ButtonRadioChange { /** * Contains the `ButtonRadio` that has been changed. */ source: ButtonRadio | null; /** * The value of the `ButtonRadio` encompassed in the `ButtonRadioChange` class. */ value: string; constructor(source: ButtonRadio, value: string); }