diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-20 11:28:12 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-20 11:28:12 +0300 |
commit | c372611b7ecbd9b91f900e7a10c46aebaf200caf (patch) | |
tree | 0c03a06c3c86d32a2d98f01fc062320b1e238f6f /dist | |
parent | 04dda52ed1c8f49c789da0faa2c9ff227dd7e145 (diff) | |
download | webos-service-types-c372611b7ecbd9b91f900e7a10c46aebaf200caf.tar.xz webos-service-types-c372611b7ecbd9b91f900e7a10c46aebaf200caf.zip |
Class "Subscription" structure
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'dist')
-rw-r--r-- | dist/subscription.d.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dist/subscription.d.ts b/dist/subscription.d.ts new file mode 100644 index 0000000..30cff6b --- /dev/null +++ b/dist/subscription.d.ts @@ -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; +} |