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.
|
- import UIEvent from '../UIEvent';
- import EventTarget from '../EventTarget';
- import IFocusEventInit from './IFocusEventInit';
- /**
- *
- */
- export default class FocusEvent extends UIEvent {
- readonly relatedTarget: EventTarget;
- /**
- * Constructor.
- *
- * @param type Event type.
- * @param [eventInit] Event init.
- */
- constructor(type: string, eventInit?: IFocusEventInit);
- }
|