@regionorebrolan/extensions
Version:
Library with JavaScript additions and extensions.
17 lines (16 loc) • 500 B
TypeScript
/// <reference types="urijs" />
import IUri from "./IUri";
import Wrapper from "./Abstractions/Wrapper";
export default class UriWrapper extends Wrapper<uri.URI> implements IUri {
private readonly _port;
constructor(uri: uri.URI);
get authority(): string;
get fragment(): string;
get host(): string;
get password(): string;
get path(): string;
get port(): number | null;
get query(): string;
get scheme(): string;
get userName(): string;
}