primevue-mirror/components/lib/inputmask/style/InputMaskStyle.d.ts

20 lines
427 B
TypeScript
Raw Normal View History

/**
*
* InputMask component is used to enter input in a certain format such as numeric, date, currency, email and phone.
*
* [Live Demo](https://www.primevue.org/inputmask/)
*
* @module inputmaskstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum InputMaskClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-inputmask'
}
2023-10-02 13:15:41 +00:00
export interface InputMaskStyle extends BaseStyle {}