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

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