aboutsummaryrefslogtreecommitdiff
path: root/dist/method.d.ts
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-03-16 18:09:47 +0300
committerValentin Popov <info@valentineus.link>2020-03-16 18:09:47 +0300
commita9584bd33391dd6ba39a247e60e9e3284a060bff (patch)
treee9b6c748f5f7420ffea423ef16565b1322d11ad8 /dist/method.d.ts
parentb8520170be04e47694beb46117e495889771661d (diff)
downloadwebos-service-types-a9584bd33391dd6ba39a247e60e9e3284a060bff.tar.xz
webos-service-types-a9584bd33391dd6ba39a247e60e9e3284a060bff.zip
Removed declare module
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;