@chamn/engine
Version:
16 lines (15 loc) • 501 B
TypeScript
import { default as React } from 'react';
import { CSetter, CSetterProps } from '../type';
import { EditorType } from '../../../../MonacoEditor';
export type ExpressionSetterProps = CSetterProps<{
value: {
type: string;
value: string;
};
mode: 'modal' | 'inline';
containerStyle?: React.CSSProperties;
minimap?: boolean;
lineNumber?: boolean;
editorOptions?: EditorType['options'];
}>;
export declare const ExpressionSetter: CSetter<ExpressionSetterProps>;