aboutsummaryrefslogtreecommitdiff
path: root/dist/method.d.ts
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-03-16 18:12:30 +0300
committerValentin Popov <info@valentineus.link>2020-03-16 18:12:30 +0300
commit6fde813c1330f5555c4a5d974c375a51f3433785 (patch)
tree5c72a8e5d2497841e5af876fa911c4ed68de43b4 /dist/method.d.ts
parentb8520170be04e47694beb46117e495889771661d (diff)
parent1af2a1f27e3c93135209a3647246ec429bd02b34 (diff)
downloadwebos-service-types-6fde813c1330f5555c4a5d974c375a51f3433785.tar.xz
webos-service-types-6fde813c1330f5555c4a5d974c375a51f3433785.zip
Merge branch 'master' of ssh://code.valentineus.link:22001/valentineus/webos-service-typesv0.1.5
Diffstat (limited to 'dist/method.d.ts')
-rw-r--r--dist/method.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/method.d.ts b/dist/method.d.ts
index fac3163..9845709 100644
--- a/dist/method.d.ts
+++ b/dist/method.d.ts
@@ -1,12 +1,12 @@
import { Message } from "./message";
export declare class Method {
- public constructor(methodName: string, description: Record<string, any>);
-
public readonly description: Record<string, any>;
public readonly name: string;
+ public constructor(methodName: string, description: Record<string, any>);
+
public on(event: "request", listener: (message: Message) => void): this;
public on(event: "cancel", listener: (message: Message) => void): this;