removed unneeded member from interface

Signed-off-by: Abhay-soni-developer <abhaysoni.developer@gmail.com>
This commit is contained in:
Abhay-soni-developer
2023-09-20 13:21:49 +05:30
parent 58f0cb6812
commit 6ef6b1e7e4
-4
View File
@@ -91,10 +91,6 @@ export interface Project {
// added by us
status: string; // == inQueue ? 'queued' : lastBuild.building ? 'running' : lastBuild.result,
onRestartClick: () => Promise<void>; // TODO rename to handle.* ? also, should this be on lastBuild?
getJobBuilds(options: {
entity: CompoundEntityRef;
jobFullName: string;
}): Promise<Job>;
}
export interface JenkinsApi {