mirror of
https://github.com/valentineus/webos-service-types.git
synced 2025-04-28 00:41:24 +03:00
Fixed
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
35655605cd
commit
c74e8da089
5
dist/method.d.ts
vendored
5
dist/method.d.ts
vendored
@ -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;
|
||||
|
||||
|
5
dist/subscription.d.ts
vendored
5
dist/subscription.d.ts
vendored
@ -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;
|
||||
|
2
dist/types/index.d.ts
vendored
2
dist/types/index.d.ts
vendored
@ -1,2 +0,0 @@
|
||||
// eslint-disable-next-line @typescript-eslint/no-type-alias
|
||||
export type Description = any;
|
Loading…
x
Reference in New Issue
Block a user