UNPKG
@ngrx/core
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.2
1.0.1
1.0.0
Core operators and utiliies for the ngrx platform
github.com/ngrx/core
ngrx/core
@ngrx/core
/
operator
/
select.d.ts
7 lines
(6 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Observable
}
from
'rxjs/Observable'
;
export
interface
SelectSignature
<T> { <R>(...
paths
:
string
[]):
Observable
<R>; <R>(
mapFn
:
(
state
: T
) =>
R):
Observable
<R>; }
export
declare
function
select<T, R>(
pathOrMapFn
:
any
, ...
paths
:
string
[]):
Observable
<R>;