0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-04-28 00:41:24 +03:00

Class "Subscription" structure

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

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