aboutsummaryrefslogtreecommitdiff
path: root/dist/method.d.ts
diff options
context:
space:
mode:
authorPopov Valentin <info@valentineus.link>2020-03-16 18:12:11 +0300
committerPopov Valentin <info@valentineus.link>2020-03-16 18:12:11 +0300
commit1af2a1f27e3c93135209a3647246ec429bd02b34 (patch)
tree5c72a8e5d2497841e5af876fa911c4ed68de43b4 /dist/method.d.ts
parentb8520170be04e47694beb46117e495889771661d (diff)
parent6c87a5c24fe28640ef6fa7bf2986fbec2a5d4c6b (diff)
downloadwebos-service-types-1af2a1f27e3c93135209a3647246ec429bd02b34.tar.xz
webos-service-types-1af2a1f27e3c93135209a3647246ec429bd02b34.zip
Merge pull request 'ver 0.1.5' (#1) from develop into master
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;