UNPKG

boa-handler-history

Version:
13 lines (12 loc) 316 B
import { Handler } from 'boa-core'; import { Route } from 'boa-router'; export interface HistoryResponse { handler: Handler; } declare const init: (historyOptions: { goToActionType?: string; historyType?: string; routes: Route[]; routeActionType?: string; }) => HistoryResponse; export { init };