Skip to content

Commit

Permalink
Add removeAllListeners to realm-web
Browse files Browse the repository at this point in the history
  • Loading branch information
takameyer committed May 3, 2022
1 parent 799073c commit 89beeb2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/realm-web/src/App.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,13 @@ export class App<
throw new Error("Not yet implemented");
}

/**
* @inheritdoc
*/
public removeAllListeners(): void {
throw new Error("Not yet implemented");
}

/**
* The currently active user (or null if no active users exists).
*
Expand Down
7 changes: 7 additions & 0 deletions packages/realm-web/src/User.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,13 @@ export class User<
throw new Error("Not yet implemented");
}

/**
* @inheritdoc
*/
public removeAllListeners(): void {
throw new Error("Not yet implemented");
}

/** @inheritdoc */
public callFunction<ReturnType = unknown>(name: string, ...args: unknown[]): Promise<ReturnType> {
return this.functions.callFunction(name, ...args);
Expand Down

0 comments on commit 89beeb2

Please sign in to comment.