synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
15 lines • 424 B
TypeScript
export type ForumThreadEditorProps = {
initialTitle?: string;
initialText?: string;
id: string;
onClose: () => void;
isReply: boolean;
} & ({
isDialog: false;
openDialog?: never;
} | {
isDialog: true;
openDialog: boolean;
});
export declare function ForumThreadEditor(props: ForumThreadEditorProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ForumThreadEditor.d.ts.map