0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-07-01 08:30:26 +03:00

Class "Subscription" structure

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2020-02-20 12:28:12 +04:00
parent 04dda52ed1
commit c372611b7e

15
dist/subscription.d.ts vendored Normal file
View File

@ -0,0 +1,15 @@
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;
}