@regionorebrolan/extensions
Version:
Library with JavaScript additions and extensions.
14 lines (13 loc) • 311 B
text/typescript
interface IUri {
// Properties
readonly authority: string;
readonly fragment: string;
readonly host: string;
readonly password: string;
readonly path: string;
readonly port: number | null;
readonly query: string;
readonly scheme: string;
readonly userName: string;
}
export default IUri;