@itwin/core-frontend
Version:
iTwin.js frontend components
21 lines • 841 B
TypeScript
import { RealityDataFormat, RealityDataProvider } from "@itwin/core-common";
/**
* This class provide methods used to interpret url to Project Wise Context Share (RealityDataProvider.ContextShare)
*/
export declare class ContextShareProvider {
/** Return true if this is a supported url to this service provider */
static isProviderUrl(tilesetUrl: string): boolean;
/** Return true if this is a supported url to this service provider */
static getInfoFromUrl(tilesetUrl: string): {
provider: RealityDataProvider;
format: RealityDataFormat;
id: string;
iTwinId: string | undefined;
};
static getInfoFromBlobUrl(blobUrl: string): {
provider: RealityDataProvider;
format: RealityDataFormat;
id: string;
};
}
//# sourceMappingURL=ContextShareProvider.d.ts.map