mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
declare module server {
|
|
interface commandContext {
|
|
iD: string;
|
|
commandMode: string;
|
|
commandText: string;
|
|
senderUserID: string;
|
|
senderConnectionID: string;
|
|
targetDeviceIDs: string[];
|
|
pSCoreResults: any[];
|
|
commandResults: any[];
|
|
timeStamp: Date;
|
|
organizationID: string;
|
|
}
|
|
}
|