fcs-core-viewer 0.29.3 → 0.29.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function getFileAsset(fileRelativeUrl: string
|
|
1
|
+
export declare function getFileAsset(fileRelativeUrl: string): Promise<Response>;
|
|
2
2
|
export declare class ViewerUrls {
|
|
3
3
|
private static _viewerBaseUrl;
|
|
4
4
|
/**
|
|
@@ -9,4 +9,7 @@ export declare class ViewerUrls {
|
|
|
9
9
|
private static _viewerVariantType;
|
|
10
10
|
static getViewerVariantType(): string;
|
|
11
11
|
static setViewerVariantType(viewerVariantType: string): void;
|
|
12
|
+
private static _authToken;
|
|
13
|
+
static getAuthToken(): string;
|
|
14
|
+
static setAuthToken(authToken: string): void;
|
|
12
15
|
}
|