export type TYPE_INPUT = 'text' | 'number' | 'password'; export type TYPE_DATA_TYPE_INPUT = 'string' | 'int' | 'float' | 'bigint'; export type TYPE_TAG_INPUT = 'input' | 'textarea' | 'iframe-textarea'; export type TYPE_MODE_INPUT = 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal'; export type TYPE_INPUT_RESIZE_MODE = 'auto' | 'vertical' | 'horizontal' | 'none' | undefined;