UNPKG

@jk-core/hooks

Version:
10 lines (9 loc) 229 B
interface Update { action: 'POP' | 'PUSH' | 'REPLACE'; location: Location; } interface Listener { (update: Update): void; } declare const useHistoryEvent: (listener: Listener) => void; export default useHistoryEvent;