UNPKG

@canutin/svelte-currency-input

Version:

A form input that converts numbers to currencies as you type in localized formats

10 lines (9 loc) 245 B
export interface InputClasses { wrapper?: string; unformatted?: string; formatted?: string; formattedPositive?: string; formattedNegative?: string; formattedZero?: string; } export type Callback = (value: number) => any;