Remotely/Remotely_Shared/Models/PSCoreCommandResult.d.ts
2021-07-29 07:53:51 -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;
}