Initial commit after recreate
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
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 {};
|
||||
Reference in New Issue
Block a user