12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
|
|
/** Barrel re-export. Prefer messageShell (layout) or LazyMessageResponse (markdown). */
|
||
|
|
export {
|
||
|
|
Message,
|
||
|
|
MessageContent,
|
||
|
|
type MessageContentProps,
|
||
|
|
type MessageProps,
|
||
|
|
} from './messageShell';
|
||
|
|
export {
|
||
|
|
MessageResponse,
|
||
|
|
type MessageResponseProps,
|
||
|
|
} from './messageResponse';
|