interface ILocation {
    readonly hostname: string;
    readonly search: string;
}
export default ILocation;
