dylanebert's picture
dylanebert HF staff
initial leaderboard iteration
31a2d08
raw
history blame
221 Bytes
export interface IViewer {
loadScene(url: string, onProgress?: (progress: number) => void): Promise<void>;
dispose(): void;
capture(): Promise<string | null>;
getStats(): { name: string; value: any }[];
}