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.
11 lines
328 B
11 lines
328 B
2 years ago
|
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 {};
|