UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

12 lines 540 B
import { TextFieldProps } from '@mui/material/TextField'; import { EntityType } from '@sage-bionetworks/synapse-client'; export type SqlDefinedTableEditorProps = TextFieldProps & { entityType?: EntityType; }; /** * Component used to edit the SQL of a Synapse entity defined by SQL, such as a MaterializedView or VirtualTable * @param props * @constructor */ export default function SqlDefinedTableEditor(props: SqlDefinedTableEditorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SqlDefinedTableEditor.d.ts.map