Remotely/Shared/Models/GenericCommandResult.cs.d.ts
Jared Goodwin 10ec413b7d WIP
2021-07-29 07:53:54 -07:00

11 lines
202 B
TypeScript

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