Proksea/node_modules/@azure/msal-common/dist/url/IUri.d.ts
2024-07-05 00:09:37 +08:00

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