aboutsummaryrefslogtreecommitdiff
path: root/dist/method.d.ts
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-20 12:40:25 +0300
committerValentin Popov <info@valentineus.link>2020-02-20 12:40:25 +0300
commitc74e8da089aaf07e71473dfe38e922f03c49ed14 (patch)
tree828a283352eea92af90092c93d5f058f6941792f /dist/method.d.ts
parent35655605cd532faf75e7052385062ae679976a85 (diff)
downloadwebos-service-types-c74e8da089aaf07e71473dfe38e922f03c49ed14.tar.xz
webos-service-types-c74e8da089aaf07e71473dfe38e922f03c49ed14.zip
Fixed
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'dist/method.d.ts')
-rw-r--r--dist/method.d.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/dist/method.d.ts b/dist/method.d.ts
index 61c31d6..fac3163 100644
--- a/dist/method.d.ts
+++ b/dist/method.d.ts
@@ -1,10 +1,9 @@
-import { Description } from "./types";
import { Message } from "./message";
export declare class Method {
- public constructor(methodName: string, description: Description);
+ public constructor(methodName: string, description: Record<string, any>);
- public readonly description: Description;
+ public readonly description: Record<string, any>;
public readonly name: string;