UNPKG
most-proxy
Version:
latest (3.3.0)
3.3.0
3.2.0
3.1.1
3.1.0
3.0.0
2.0.1
2.0.0
Circular Dependencies for most.js
github.com/mostjs-community/most-proxy
mostjs-community/most-proxy
most-proxy
/
lib
/
es2015
/
index.d.ts
8 lines
(7 loc)
•
217 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Stream
}
from
'most'
;
export
interface
Proxy
<T> {
attach
(
stream
:
Stream
<T>):
Stream
<T>;
stream
:
Stream
<T>; }
export
declare
function
proxy
(
):
Proxy
<
any
>;
export
declare
function
proxy<T>():
Proxy
<T>;