RSS Git Download  Clone
Raw Blame History
export interface StateInterface {
    NotFound: boolean,
    RequestPath: string,
}

let State: StateInterface = {
    NotFound: false,
    RequestPath: location.pathname + location.search + location.hash
}

export {State};