Skip to content

Commit d722a13

Browse files
committed
Update API
1 parent 9709c86 commit d722a13

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

review/api/application.api.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { Token } from '@lumino/coreutils';
1313
import { Widget } from '@lumino/widgets';
1414

1515
// @public
16-
export class Application<T extends Widget = Widget> {
16+
export class Application<T extends Widget | HTMLElement = Widget> {
1717
constructor(options: Application.IOptions<T>);
1818
activateDeferredPlugins(): Promise<void>;
1919
activatePlugin(id: string): Promise<void>;
@@ -34,8 +34,8 @@ export class Application<T extends Widget = Widget> {
3434
isPluginActivated(id: string): boolean;
3535
listPlugins(): string[];
3636
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;
3939
resolveOptionalService<U>(token: Token<U>): Promise<U | null>;
4040
resolveRequiredService<U>(token: Token<U>): Promise<U>;
4141
readonly shell: T;
@@ -45,7 +45,9 @@ export class Application<T extends Widget = Widget> {
4545

4646
// @public
4747
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;
4951
contextMenuRenderer?: Menu.IRenderer;
5052
pluginRegistry?: PluginRegistry;
5153
shell: T;

0 commit comments

Comments
 (0)