Remotely/Remotely_Shared/Models/PSCoreCommandResult.d.ts
2019-04-05 22:23:59 -07:00

12 lines
260 B
TypeScript

interface PSCoreCommandResult {
CommandContextID: string;
DeviceID: string;
VerboseOutput: string[];
DebugOutput: string[];
ErrorOutput: string[];
HostOutput: string;
InformationOutput: string[];
WarningOutput: string[];
TimeStamp: Date;
}