UNPKG

boa-handler-history

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