UNPKG
morning-builds-core
Version:
latest (1.0.1)
1.0.1
Core functionality for Morning Builds
morning-builds-core
/
build
/
src
/
actions
/
rerun.d.ts
9 lines
(8 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Store
}
from
'../store'
;
import
{
Clients
}
from
'../clients'
;
export
declare
class
Rerun
{
private
executionStore;
private
bambooClient;
constructor
(
store
:
Store
,
clients
:
Clients
);
rerunFailingBuilds
(
categories
:
Array
<
string
>):
Promise
<
number
>; }