UNPKG

@virtualstate/app-history

Version:

Native JavaScript [app-history](https://github.com/WICG/app-history) 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;