@azure/msal-common
Version:
Microsoft Authentication Library for js
18 lines (16 loc) • 351 B
text/typescript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Interface which describes URI components.
*/
export interface IUri {
Protocol: string;
HostNameAndPort: string;
AbsolutePath: string;
Search: string;
Hash: string;
PathSegments: string[];
QueryString: string;
}