Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
devtools
/
node_modules
/
rxjs
/
src
/
internal
/
Operator.ts
blob: 93b65e6464474bcc094aeba40a50a660b898ebba [
file
] [
log
] [
blame
]
import
{
Subscriber
}
from
'./Subscriber'
;
import
{
TeardownLogic
}
from
'./types'
;
export
interface
Operator
<
T
,
R
>
{
call
(
subscriber
:
Subscriber
<
R
>,
source
:
any
):
TeardownLogic
;
}