|
@@ -65,7 +65,8 @@ namespace PluginBehavior {
|
|
|
|
|
|
export function simpleCommandHandler<T>(cmd: PluginCommand<T>, action: (data: T, ctx: PluginContext) => void | Promise<void>) {
|
|
|
return class implements PluginBehavior<{}> {
|
|
|
- private sub: PluginCommand.Subscription | undefined = void 0;
|
|
|
+ // TODO can't be private due to bug with generating declerations, see https://github.com/Microsoft/TypeScript/issues/17293
|
|
|
+ /** private */ sub: PluginCommand.Subscription | undefined = void 0;
|
|
|
register(): void {
|
|
|
this.sub = cmd.subscribe(this.ctx, data => action(data, this.ctx));
|
|
|
}
|
|
@@ -73,7 +74,8 @@ namespace PluginBehavior {
|
|
|
if (this.sub) this.sub.unsubscribe();
|
|
|
this.sub = void 0;
|
|
|
}
|
|
|
- constructor(private ctx: PluginContext) { }
|
|
|
+ // TODO can't be private due to bug with generating declerations, see https://github.com/Microsoft/TypeScript/issues/17293
|
|
|
+ constructor(/** private */ public ctx: PluginContext) { }
|
|
|
}
|
|
|
}
|
|
|
|