Hint the return type based on the provided parameters
authorAlexander Ebert <ebert@woltlab.com>
Sat, 16 Jan 2021 12:21:32 +0000 (13:21 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Sat, 16 Jan 2021 12:21:32 +0000 (13:21 +0100)
ts/WoltLabSuite/Core/Ui/Message/Manager.ts

index f4403ef622771e4fc82b6a675fb349aa8d414fab..484dadd86bf7a0ddeb7de3bff43f12d86af7035f 100644 (file)
@@ -71,6 +71,8 @@ class UiMessageManager implements AjaxCallbackObject {
   /**
    * Returns the given property value from a message, optionally supporting a boolean return value.
    */
+  getPropertyValue(objectId: string, propertyName: string, asBool: true): boolean;
+  getPropertyValue(objectId: string, propertyName: string, asBool: false): string;
   getPropertyValue(objectId: string, propertyName: string, asBool: boolean): boolean | string {
     const element = this._elements.get(objectId);
     if (element === undefined) {