12 lines
390 B
TypeScript
12 lines
390 B
TypeScript
import { CopyClipboardOptions } from './types';
|
|
export declare interface CopyClipboardInterface {
|
|
_triggerEl: HTMLElement | null;
|
|
_targetEl: HTMLElement | HTMLInputElement | null;
|
|
_options: CopyClipboardOptions;
|
|
init(): void;
|
|
copy(): string;
|
|
destroy(): void;
|
|
removeInstance(): void;
|
|
destroyAndRemoveInstance(): void;
|
|
}
|
|
//# sourceMappingURL=interface.d.ts.map
|