UNPKG

vim-webgl-component

Version:

A demonstration app built on top of the vim-webgl-viewer

16 lines (15 loc) 440 B
/// <reference types="react" /> export type MessageBoxProps = { title: string; body: string | JSX.Element; footer?: string | JSX.Element; canClose: boolean; onClose?: () => void; }; export type MessageBoxPropsTyped = MessageBoxProps & { type: 'message'; }; export declare function MessageBox(props: { value: MessageBoxProps; }): import("react/jsx-runtime").JSX.Element; export default MessageBox;