mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
23 lines
512 B
TypeScript
23 lines
512 B
TypeScript
interface commandContext {
|
|
iD: string;
|
|
commandMode: string;
|
|
commandText: string;
|
|
senderUserID: string;
|
|
senderConnectionID: string;
|
|
targetDeviceIDs: string[];
|
|
pSCoreResults: any[];
|
|
commandResults: any[];
|
|
timeStamp: Date;
|
|
organization: {
|
|
iD: string;
|
|
organizationName: string;
|
|
remotelyUsers: any[];
|
|
devices: any[];
|
|
commandContexts: .commandContext[];
|
|
eventLogs: any[];
|
|
permissionGroups: any[];
|
|
inviteLinks: any[];
|
|
sharedFiles: any[];
|
|
};
|
|
organizationID: string;
|
|
} |