UNPKG
@tygr/core
Version:
beta (1.0.1)
latest (1.0.5)
1.0.5
1.0.2
1.0.1
1.0.0
Combine redux capable node modules into angular projects with ease.
@tygr/core
/
dist
/
effects.d.ts
4 lines
(3 loc)
•
189 B
TypeScript
View Raw
1
2
3
4
import
{
Action
,
Store
}
from
'redux'
;
import
{
Observable
}
from
"rxjs/Observable"
;
export
declare
type
Effects
=
(
actions$
:
Observable
<
Action
>,
store
:
Store
<
any
>,
service
?:
any
) =>
void
;