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

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

export {State};