UNPKG

dmeditor

Version:

dmeditor is a block-style visual editor. Data is in json format.

9 lines (8 loc) 294 B
import { type TYPE_UNDEFINED_VALUE } from './types'; export declare class InputHandler { private _value; constructor(initialValue?: number | string | null); private convertToValidValue; set value(input: number | string | null); get value(): number | TYPE_UNDEFINED_VALUE; }