UNPKG

preline

Version:

Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.

13 lines (10 loc) 201 B
export interface IInputNumberOptions { min?: number; max?: number; step?: number; forceBlankValue?: boolean; } export interface IInputNumber { options?: IInputNumberOptions; destroy(): void; }