@difizen/ai-flow
Version:
Scalable, out-of-the-box, agent-oriented flow
25 lines (24 loc) • 667 B
TypeScript
import React from 'react';
import './index.css';
export declare enum CodeLanguage {
python3 = "python3",
javascript = "javascript",
json = "json"
}
export type Props = {
value?: string | object;
placeholder?: JSX.Element | string;
onChange?: (value: string) => void;
title?: JSX.Element;
language: CodeLanguage;
headerRight?: JSX.Element;
readOnly?: boolean;
isJSONStringifyBeauty?: boolean;
height?: number;
isInNode?: boolean;
onMount?: (editor: any, monaco: any) => void;
noWrapper?: boolean;
isExpand?: boolean;
};
declare const _default: React.NamedExoticComponent<Props>;
export default _default;