版博士V2.0程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

17 satır
401 B

  1. import UIEvent from '../UIEvent';
  2. import EventTarget from '../EventTarget';
  3. import IFocusEventInit from './IFocusEventInit';
  4. /**
  5. *
  6. */
  7. export default class FocusEvent extends UIEvent {
  8. readonly relatedTarget: EventTarget;
  9. /**
  10. * Constructor.
  11. *
  12. * @param type Event type.
  13. * @param [eventInit] Event init.
  14. */
  15. constructor(type: string, eventInit?: IFocusEventInit);
  16. }