0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-04-28 00:41:24 +03:00
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-20 13:40:25 +04:00
parent 35655605cd
commit c74e8da089
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
3 changed files with 5 additions and 7 deletions

5
dist/method.d.ts vendored
View File

@ -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;

View File

@ -1,7 +1,8 @@
export declare class Subscription {
public constructor(handle: any, uri: string, args: any);
// @todo Need to "palmbus"
public constructor(handle: any, uri: string, args: Record<string, any>);
public readonly args: any;
public readonly args: Record<string, any>;
// @todo Need to "palmbus"
public readonly handle: any;

View File

@ -1,2 +0,0 @@
// eslint-disable-next-line @typescript-eslint/no-type-alias
export type Description = any;