ether-admin/node_modules/ant-design-vue/lib/_util/copy-to-clipboard/index.d.ts

9 lines
218 B
TypeScript

interface Options {
debug?: boolean;
message?: string;
format?: string;
onCopy?: (clipboardData: object) => void;
}
declare function copy(text: string, options?: Options): boolean;
export default copy;