Remotely/Shared/Models/GenericCommandResult.cs.d.ts
Jared Goodwin a0405e28a0 WIP
2019-06-15 18:08:30 -07:00

11 lines
202 B
TypeScript

declare module server {
interface genericCommandResult {
deviceID: string;
commandContextID: string;
commandType: string;
standardOutput: string;
errorOutput: string;
timeStamp: Date;
}
}