UNPKG
@exezt-/webamp-custom
Version:
latest (0.0.2-next-d2fcbc6)
0.0.2-next-d2fcbc6
0.0.1-next-d2fcbc6
Winamp 2 implemented in HTML5 and JavaScript
@exezt-/webamp-custom
/
built
/
types
/
js
/
mediaMiddleware.d.ts
5 lines
(4 loc)
•
233 B
TypeScript
View Raw
1
2
3
4
5
import
Media
from
"./media"
;
import
{
MiddlewareStore
,
Action
,
Dispatch
}
from
"./types"
;
declare
const
_default
:
(
media
:
Media
) =>
(
store
:
MiddlewareStore
) =>
(
next
:
Dispatch
) =>
(
action
:
Action
) =>
Action
;
export
default
_default;