xframelib 1.0.8 → 1.1.0

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 +0,0 @@
1
- export { toBytes, toString, encrypt, encryptToString, decrypt, decryptToString } from '../utils/XXTEA';
@@ -1,17 +0,0 @@
1
- /**
2
- * 以前端切片方式加载大图片,只支持图片格式 jpg\png 不支持tif
3
- * @param imageID
4
- * @param imageUrl
5
- * @param imageGeoBounds
6
- * @param maxUnitSize
7
- * @returns
8
- */
9
- export declare function loadBigImage(imageID: string, imageUrl: string, imageGeoBounds: number[], maxUnitSize?: number): Promise<{
10
- id: string;
11
- width: number;
12
- height: number;
13
- maxUnitSize: number;
14
- colNum: number;
15
- rowNum: number;
16
- items: any[];
17
- }>;