hasUnreliableEmptyValue.d.ts 328 B

12345678910
  1. declare enum unreliableValueInputTypes {
  2. 'number' = "number"
  3. }
  4. /**
  5. * Check if an empty IDL value on the element could mean a derivation of displayed value and IDL value
  6. */
  7. export declare function hasUnreliableEmptyValue(element: Element): element is HTMLInputElement & {
  8. type: unreliableValueInputTypes;
  9. };
  10. export {};