12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import { Dialog } from './function-call';
|
|
|
|
export default Dialog;
|
|
export { Dialog };
|
|
export type { DialogProps } from './Dialog';
|
|
export type {
|
|
DialogTheme,
|
|
DialogMessage,
|
|
DialogOptions,
|
|
DialogMessageAlign,
|
|
} from './types';
|