adf0d17497
publish / version_or_publish (push) Has been cancelled
storybook-build / changes (push) Has been cancelled
storybook-build / :storybook-build (push) Has been cancelled
Sync Gradio Skills to Hugging Face / sync-skills (push) Has been cancelled
functional / changes (push) Has been cancelled
functional / build-frontend (push) Has been cancelled
functional / functional-test-SSR=false (push) Has been cancelled
functional / functional-reload (push) Has been cancelled
js / changes (push) Has been cancelled
js / js-test (push) Has been cancelled
docs-build / changes (push) Has been cancelled
docs-build / docs-build (push) Has been cancelled
docs-build / website-build (push) Has been cancelled
functional / functional-test-SSR=true (push) Has been cancelled
hygiene / hygiene-test (push) Has been cancelled
python / changes (push) Has been cancelled
python / build (push) Has been cancelled
python / test-ubuntu-latest-flaky (push) Has been cancelled
python / test-ubuntu-latest-not-flaky (push) Has been cancelled
python / test-windows-latest-flaky (push) Has been cancelled
python / test-windows-latest-not-flaky (push) Has been cancelled
25 lines
717 B
TypeScript
25 lines
717 B
TypeScript
import type { FileData } from "@gradio/client";
|
|
import type { ILoadingStatus as LoadingStatus } from "js/statustracker";
|
|
import type { CustomButton } from "@gradio/utils";
|
|
|
|
export interface Model3DProps {
|
|
value: null | FileData;
|
|
display_mode: "solid" | "point_cloud" | "wireframe";
|
|
clear_color: [number, number, number, number];
|
|
height: number | undefined;
|
|
zoom_speed: number;
|
|
has_change_history: boolean;
|
|
camera_position: [number | null, number | null, number | null];
|
|
buttons: (string | CustomButton)[] | null;
|
|
}
|
|
|
|
export interface Model3DEvents {
|
|
change: FileData | null;
|
|
upload: FileData;
|
|
edit: never;
|
|
clear: never;
|
|
clear_status: LoadingStatus;
|
|
error: string;
|
|
custom_button_click: { id: number };
|
|
}
|