UNPKG

@virtualstate/navigation

Version:

Native JavaScript [navigation](https://developer.mozilla.org/en-US/docs/Web/API/Navigation_API) implementation

6 lines (5 loc) 239 B
import { Event } from "./event"; export interface ParallelEvent<Name extends string | symbol = string> extends Event<Name> { parallel: true | undefined; } export declare function isParallelEvent(value: object): value is ParallelEvent;