UNPKG

@virtualstate/app-history

Version:

Native JavaScript [app-history](https://github.com/WICG/app-history) implementation

9 lines (8 loc) 251 B
import { EventCallback } from "./callback"; export declare const EventDescriptorSymbol: unique symbol; export interface EventDescriptor { [EventDescriptorSymbol]: true; type: string | symbol; callback: EventCallback; once?: boolean; }