mirror of
https://github.com/parnic/node-intellicenter.git
synced 2025-06-17 02:21:53 -05:00
No idea if this will be the best way to represent this stuff long-term, but it's working at the moment. I have some reservations about attempting to list all the possible ResponseParam keys, but I'm already this far in and it would be nice if it worked out...
14 lines
322 B
TypeScript
14 lines
322 B
TypeScript
export declare class ICRequestObj {
|
|
objnam: string;
|
|
keys: string[];
|
|
}
|
|
export declare class ICRequest {
|
|
condition?: string;
|
|
objectList?: ICRequestObj[];
|
|
queryName?: string;
|
|
arguments?: string[] | string;
|
|
command: string;
|
|
messageID: string;
|
|
}
|
|
export declare function GetRequest(): ICRequest;
|