@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>
15 lines (14 loc) • 356 B
TypeScript
import { Number } from './number.component';
/**
* Used to emit changes performed on number input components.
*/
export declare class NumberChange {
/**
* Contains the `Number` that has been changed.
*/
source: Number;
/**
* The value of the `Number` field encompassed in the `NumberChange` class.
*/
value: number;
}