mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-10 19:34:41 +00:00
13 lines
281 B
TypeScript
13 lines
281 B
TypeScript
/**
|
|
* Interface which describes URI components.
|
|
*/
|
|
export interface IUri {
|
|
Protocol: string;
|
|
HostNameAndPort: string;
|
|
AbsolutePath: string;
|
|
Search: string;
|
|
Hash: string;
|
|
PathSegments: string[];
|
|
QueryString: string;
|
|
}
|
|
//# sourceMappingURL=IUri.d.ts.map
|