15 lines
524 B
TypeScript
15 lines
524 B
TypeScript
|
|
import { type GlitchComponentProps } from './types';
|
||
|
|
type ComponentDevUiOverrides = {
|
||
|
|
showNumericDiagnostics?: boolean;
|
||
|
|
compactNumericDiagnostics?: boolean;
|
||
|
|
onOpenHarness?: () => void;
|
||
|
|
onSetParam?: (name: 'complexity' | 'speedup', value: number) => void;
|
||
|
|
maxComplexity?: number;
|
||
|
|
maxSpeedup?: number;
|
||
|
|
};
|
||
|
|
type ComponentProps = GlitchComponentProps & {
|
||
|
|
devUi?: ComponentDevUiOverrides;
|
||
|
|
};
|
||
|
|
export default function Component(props: ComponentProps): import("react/jsx-runtime").JSX.Element;
|
||
|
|
export {};
|