/** * @module typings/core */ import { IGenericObject } from './index'; export interface IUrlBase { path: string | undefined; hash: string | undefined; query: IGenericObject; port: number; } export interface IUrlFull extends IUrlBase { href: string | undefined; }