import encode = require("./encode");
import decode = require("./decode");
import parse = require("./parse");
import format = require("./format");

export interface Url {
    protocol: string;
    slashes: string;
    auth: string;
    port: string;
    hostname: string;
    hash: string;
    search: string;
    pathname: string;
}

export { decode, encode, format, parse };
