7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
|
|
import BrowserWindow from '../window/BrowserWindow.js';
|
||
|
|
import IEventInit from './IEventInit.js';
|
||
|
|
export default interface IUIEventInit extends IEventInit {
|
||
|
|
detail?: number;
|
||
|
|
view?: BrowserWindow;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=IUIEventInit.d.ts.map
|