@wyxos/vibe 3.1.19 → 3.1.20
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.
- package/lib/components/viewer-core/useAssetLoadQueue.d.ts +1 -6
- package/lib/index.cjs +1 -1
- package/lib/index.js +347 -371
- package/package.json +1 -1
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
export interface VibeAssetLoadQueueLimits {
|
|
2
|
-
maxGlobal: number;
|
|
3
|
-
maxPerDomain: number;
|
|
4
|
-
maxVideoPerDomain: number;
|
|
5
|
-
}
|
|
6
1
|
export interface VibeAssetLoadRequest {
|
|
7
2
|
assetType: 'image' | 'video' | 'probe';
|
|
8
3
|
getPriority: () => number;
|
|
@@ -14,7 +9,7 @@ export interface VibeAssetLoadLease {
|
|
|
14
9
|
refresh: () => void;
|
|
15
10
|
release: () => void;
|
|
16
11
|
}
|
|
17
|
-
export declare function createAssetLoadQueue(
|
|
12
|
+
export declare function createAssetLoadQueue(): {
|
|
18
13
|
request: (options: VibeAssetLoadRequest) => VibeAssetLoadLease;
|
|
19
14
|
};
|
|
20
15
|
export declare const defaultAssetLoadQueue: {
|