UNPKG
@fabrix/spool-crons
Version:
latest (1.6.0)
1.6.0
1.5.0
1.1.0
1.1.0-alpha.1
Spool - Cron Jobs for Fabrix
fabrix.app
fabrix-app/spool-crons
@fabrix/spool-crons
/
dist
/
Crons.d.ts
8 lines
(7 loc)
•
255 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
FabrixApp
}
from
'@fabrix/fabrix'
;
export
declare
const
Crons
: {
configure
:
(
app
:
any
) =>
void
;
cancelCrons
:
(
app
:
FabrixApp
) =>
Promise
<
void
>;
copyDefaults
:
(
app
:
FabrixApp
) =>
Promise
<{}>;
addCrons
:
(
app
:
FabrixApp
) =>
void
; };