Sha256: 4b1022a607444684abeee6537e4cace97263d1ef047c31b012c41fdc15838a79
Contents?: true
Size: 514 Bytes
Versions: 26
Compression:
Stored size: 514 Bytes
Contents
declare enum maxLengthSupportedTypes { 'email' = "email", 'password' = "password", 'search' = "search", 'telephone' = "telephone", 'text' = "text", 'url' = "url" } type ElementWithMaxLengthSupport = HTMLTextAreaElement | (HTMLInputElement & { type: maxLengthSupportedTypes; }); export declare function getMaxLength(element: ElementWithMaxLengthSupport): number | undefined; export declare function supportsMaxLength(element: Element): element is ElementWithMaxLengthSupport; export {};
Version data entries
26 entries across 26 versions & 1 rubygems