@@ -13,7 +13,7 @@ import { Token } from '@lumino/coreutils';
13
13
import { Widget } from ' @lumino/widgets' ;
14
14
15
15
// @public
16
- export class Application <T extends Widget = Widget > {
16
+ export class Application <T extends Widget | HTMLElement = Widget > {
17
17
constructor (options : Application .IOptions <T >);
18
18
activateDeferredPlugins(): Promise <void >;
19
19
activatePlugin(id : string ): Promise <void >;
@@ -34,8 +34,8 @@ export class Application<T extends Widget = Widget> {
34
34
isPluginActivated(id : string ): boolean ;
35
35
listPlugins(): string [];
36
36
protected pluginRegistry: PluginRegistry ;
37
- registerPlugin(plugin : IPlugin <this , any >): void ;
38
- registerPlugins(plugins : IPlugin <this , any >[]): void ;
37
+ registerPlugin(plugin : IPlugin <Application < Widget | HTMLElement > , any >): void ;
38
+ registerPlugins(plugins : IPlugin <Application < Widget | HTMLElement > , any >[]): void ;
39
39
resolveOptionalService<U >(token : Token <U >): Promise <U | null >;
40
40
resolveRequiredService<U >(token : Token <U >): Promise <U >;
41
41
readonly shell: T ;
@@ -45,7 +45,9 @@ export class Application<T extends Widget = Widget> {
45
45
46
46
// @public
47
47
export namespace Application {
48
- export interface IOptions <T extends Widget > extends PluginRegistry .IOptions {
48
+ export interface IOptions <T extends Widget | HTMLElement > extends PluginRegistry .IOptions {
49
+ commands? : CommandRegistry ;
50
+ contextMenuFactory? : (options : ContextMenu .IOptions ) => ContextMenu ;
49
51
contextMenuRenderer? : Menu .IRenderer ;
50
52
pluginRegistry? : PluginRegistry ;
51
53
shell: T ;
0 commit comments