@vctrl/hooks
Version:
vctrl/hooks is a React hooks package designed to simplify 3D model loading and management within React applications. It's part of the vectreal-core ecosystem and is primarily used in the vctrl/viewer React component and the official website application.
9 lines (8 loc) • 367 B
TypeScript
import { ServerSceneData } from '../types';
type ReferencedBytes = {
sourcePackageBytes: number;
textureBytes: number;
};
export declare function calculateReferencedBytesFromFiles(gltfFile: File, assetFiles: File[]): Promise<ReferencedBytes>;
export declare function calculateReferencedBytesFromServerScene(data: ServerSceneData): ReferencedBytes;
export {};