You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
328 B
10 lines
328 B
declare enum unreliableValueInputTypes { |
|
'number' = "number" |
|
} |
|
/** |
|
* Check if an empty IDL value on the element could mean a derivation of displayed value and IDL value |
|
*/ |
|
export declare function hasUnreliableEmptyValue(element: Element): element is HTMLInputElement & { |
|
type: unreliableValueInputTypes; |
|
}; |
|
export {};
|
|
|