UNPKG

@ngrx/signals

Version:

Reactive Store and Set of Utilities for Angular Signals

9 lines (8 loc) 224 B
/** * @experimental */ export type EventInstance<Type extends string, Payload> = { type: Type; payload: Payload; }; export declare function isEventInstance(value: unknown): value is EventInstance<string, unknown>;