19 lines
416 B
TypeScript
19 lines
416 B
TypeScript
import * as plugins from '../plugins.ts';
|
|
import * as data from '../data/index.ts';
|
|
|
|
export interface IReq_GetJobLog extends plugins.typedrequestInterfaces.implementsTR<
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
IReq_GetJobLog
|
|
> {
|
|
method: 'getJobLog';
|
|
request: {
|
|
identity: data.IIdentity;
|
|
connectionId: string;
|
|
projectId: string;
|
|
jobId: string;
|
|
};
|
|
response: {
|
|
log: string;
|
|
};
|
|
}
|