IParsedUrl Interface
Interface to represent the parsed parts of IResolvedUrl.url to help in getting info about different parts of the url. May not be compatible or relevant for any Url Resolver
To use, import via @fluidframework/container-loader/legacy
.
For more information about our API support guarantees, see here.
Signature
export interface IParsedUrl
Properties
Property | Alerts | Type | Description |
---|---|---|---|
id | Alpha |
string | It is combination of tenantid/docId part of the url. |
path | Alpha |
string | It is the deep link path in the url. |
query | Alpha |
string | Query string part of the url. |
version | Alpha |
string | undefined | Undefined means load latest snapshot, otherwise it's version ID passed to IDocumentStorageService.getVersions() to figure out what snapshot to use. |
Property Details
id
It is combination of tenantid/docId part of the url.
For more information about our API support guarantees, see here.
Signature
id: string;
Type: string
path
It is the deep link path in the url.
For more information about our API support guarantees, see here.
Signature
path: string;
Type: string
query
Query string part of the url.
For more information about our API support guarantees, see here.
Signature
query: string;
Type: string
version
Undefined means load latest snapshot, otherwise it's version ID passed to IDocumentStorageService.getVersions() to figure out what snapshot to use.
For more information about our API support guarantees, see here.
Signature
version: string | undefined;
Type: string | undefined