UNPKG

@memori.ai/memori-react

Version:

[![npm version](https://img.shields.io/github/package-json/v/memori-ai/memori-react)](https://www.npmjs.com/package/@memori.ai/memori-react) ![Tests](https://github.com/memori-ai/memori-react/workflows/CI/badge.svg?branch=main) ![TypeScript Support](https

13 lines (12 loc) 342 B
/// <reference types="react" /> export interface Props { visible: boolean; onCancel?: () => void; onOk: ({ url, title }: { url: string; title: string; }) => void; apiURL?: string; } declare const AttachmentLinkModal: ({ visible, onCancel, onOk }: Props) => JSX.Element; export default AttachmentLinkModal;