UNPKG

boa-handler-history

Version:
12 lines (11 loc) 328 B
import { HistoryInterface } from './history-interface'; declare class History implements HistoryInterface { private callback; private window; private history; constructor(callback: (path: string) => void); back(): void; go(path: string, replace?: boolean): void; start(): void; } export { History };