UNPKG
@tempest/core
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.0
0.0.2
0.0.1
The core of the Tempest Stream Library
@tempest/core
/
lib
/
util
/
task.d.ts
5 lines
(4 loc)
•
231 B
TypeScript
View Raw
1
2
3
4
5
import
{
Task
,
ScheduledTask
}
from
'../interfaces'
;
export
declare
function
defer
(
task: Task
):
Promise
<
void
>;
export
declare
function
runTask
(
task: Task
):
void
;
export
declare
function
runScheduledTask
(
task: ScheduledTask
):
void
;