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