mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
24 lines
858 B
TypeScript
24 lines
858 B
TypeScript
export { ConfirmDialog } from './ConfirmDialog';
|
|
export type { ConfirmDialogProps } from './ConfirmDialog';
|
|
|
|
export { FormDialog } from './FormDialog';
|
|
export type { FormDialogProps, FormField as FormDialogField } from './FormDialog';
|
|
|
|
export { CreateTableDialog } from './CreateTableDialog';
|
|
export type { CreateTableDialogProps, TableColumn } from './CreateTableDialog';
|
|
|
|
export { DropTableDialog } from './DropTableDialog';
|
|
export type { DropTableDialogProps } from './DropTableDialog';
|
|
// TableInfo exported from ../tables (same type)
|
|
|
|
export { ColumnDialog } from './ColumnDialog';
|
|
export type { ColumnDialogProps, ColumnDialogMode, ColumnInfo } from './ColumnDialog';
|
|
|
|
export { ConstraintDialog } from './ConstraintDialog';
|
|
export type {
|
|
ConstraintDialogProps,
|
|
ConstraintDialogMode,
|
|
ConstraintType,
|
|
ConstraintInfo,
|
|
} from './ConstraintDialog';
|