Chain proxy creators to enable multiple calls in chains

This commit is contained in:
2023-08-25 17:08:29 +03:00
parent 58c0a2cf66
commit 9220e8b902
2 changed files with 4 additions and 4 deletions

View File

@ -8,10 +8,10 @@ export class RestEvent extends Event {
} }
_fallbackMethod = (): Event => { _fallbackMethod = (): Event => {
return this; return RestEvent.createRestProxy(this.values["duration"], this.app);
} }
public static createRestProxy = (duration: number, app: Editor) => { public static createRestProxy = (duration: number, app: Editor): RestEvent => {
const instance = new RestEvent(duration, app); const instance = new RestEvent(duration, app);
return new Proxy(instance, { return new Proxy(instance, {
// @ts-ignore // @ts-ignore

View File

@ -1,10 +1,10 @@
export class SkipEvent { export class SkipEvent {
_fallbackMethod = (): SkipEvent => { _fallbackMethod = (): SkipEvent => {
return this; return SkipEvent.createSkipProxy();
} }
public static createSkipProxy = () => { public static createSkipProxy = (): SkipEvent => {
const instance = new SkipEvent(); const instance = new SkipEvent();
return new Proxy(instance, { return new Proxy(instance, {
// @ts-ignore // @ts-ignore