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) 383 B
import { Radio } from './radio.component'; /** * Used to emit changes performed on a `Radio`. */ export declare class RadioChange { /** * Contains the `Radio` that has been changed. */ source: Radio | null; /** * The value of the `Radio` encompassed in the `RadioChange` class. */ value: string; constructor(source: Radio, value: string); }