drab
Version:
Interactivity for You
11 lines (10 loc) • 332 B
TypeScript
import { BaseCopy, type BaseCopyAttributes } from "../base/copy/index.js";
export type CopyAttributes = BaseCopyAttributes;
/**
* Uses the [Clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard/writeText)
* to copy text.
*/
export declare class Copy extends BaseCopy {
constructor();
mount(): void;
}