UNPKG

159 BTypeScriptView Raw
1export interface StateEvent extends Event {
2 action?: 'pushState' | 'replaceState' | 'popState'
3 state?: any
4 unused?: string
5 url?: string | URL | null
6}