0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-04-28 00:41:24 +03:00
webos-service-types/dist/subscription.d.ts
Valentin Popov c372611b7e
Class "Subscription" structure
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-20 12:28:12 +04:00

16 lines
300 B
TypeScript

export declare class Subscription {
public constructor(handle: any, uri: string, args: any);
public readonly args: any;
// @todo Need to "palmbus"
public readonly handle: any;
// @todo Need to "palmbus"
public readonly request: any;
public readonly uri: string;
public cancel(): void;
}