UNPKG
@actionforest/dispatch
Version:
latest (0.1.0)
0.1.0
0.0.1
Cross server task dispach for ActionForest
github.com/actionforest/Dispatch
actionforest/Dispatch
@actionforest/dispatch
/
Modules
/
TaskWriter
/
defer.d.ts
13 lines
(12 loc)
•
293 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** *
@file
defer
*
@author
Jim Bulkowski <jim.b
@paperelectron
.com> *
@project
Dispatch
*
@license
MIT {
@link
http://opensource.org/licenses/MIT} */
import
Bluebird
from
'bluebird'
;
export
declare
const
defer
:
() =>
{
resolve
:
any
;
reject
:
any
;
promise
:
Bluebird
<
unknown
>; };