UNPKG

@lidick/mt-react-view

Version:

A React component library

15 lines (14 loc) 355 B
type CopyOptions = { text: string; success: ((text: string) => void) | null; error: ((error: any) => void) | null; }; /** * 复制文本到剪贴板 * * @param text * @param success 复制成功回调 * @param error 复制失败回调 */ export declare const copyToClipboard: ({ text, success, error, }: CopyOptions) => void; export {};