UNPKG
@ngrx/signals
Version:
latest (21.0.1)
next (21.0.0-rc.0)
21.0.1
21.0.0
21.0.0-rc.0
21.0.0-beta.0
20.1.0
20.0.1
20.0.0
20.0.0-rc.0
20.0.0-beta.0
19.2.1
19.2.0
19.1.0
19.0.1
19.0.0
19.0.0-rc.0
19.0.0-beta.0
18.1.1
18.1.0
18.0.2
18.0.0
18.0.0-rc.3
18.0.0-rc.2
18.0.0-rc.1
18.0.0-rc.0
18.0.0-beta.1
18.0.0-beta.0
17.2.0
17.1.1
17.1.0
17.0.1
17.0.0
17.0.0-rc.0
17.0.0-beta.0
Reactive Store and Set of Utilities for Angular Signals
github.com/ngrx/platform
ngrx/platform
@ngrx/signals
/
events
/
src
/
event-instance.d.ts
9 lines
(8 loc)
•
224 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** *
@experimental
*/
export
type
EventInstance
<
Type
extends
string
,
Payload
> = {
type
:
Type
;
payload
:
Payload
; };
export
declare
function
isEventInstance
(
value
:
unknown
): value is
EventInstance
<
string
,
unknown
>;