Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
devtools
/
node_modules
/
rxjs
/
internal
/
operators
/
timeoutWith.d.ts
blob: 05ea5099522b20f37e98920a173d2dc020c7ae84 [
file
] [
log
] [
blame
]
import
{
ObservableInput
,
OperatorFunction
,
SchedulerLike
}
from
'../types'
;
export
declare
function
timeoutWith
<
T
,
R
>(
due
:
number
|
Date
,
withObservable
:
ObservableInput
<
R
>,
scheduler
?:
SchedulerLike
):
OperatorFunction
<
T
,
T
|
R
>;