版博士V2.0程序
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.
 
 
 
 

14 lines
326 B

  1. import HTMLInputElement from './HTMLInputElement';
  2. /**
  3. * HTML input element value sanitizer.
  4. */
  5. export default class HTMLInputElementValueSanitizer {
  6. /**
  7. * Sanitizes a value.
  8. *
  9. * @param input Input.
  10. * @param value Value.
  11. */
  12. static sanitize(input: HTMLInputElement, value: string): string;
  13. }