soft-components
Version:
Simple soft flexible set of web components
16 lines (15 loc) • 405 B
TypeScript
import { ComponentInterface } from '../stencil-public-runtime';
/**
* Provide default error messages for ValidityState
*/
export declare const validityMessages: (el: ComponentInterface) => {
badInput: string;
patternMismatch: string;
rangeOverflow: string;
rangeUnderflow: string;
stepMismatch: string;
tooLong: string;
tooShort: string;
typeMismatch: string;
valueMissing: string;
};