UNPKG

@reallyland/really-elements

Version:

A collection of opinionated custom elements for the web

15 lines 554 B
import { ClipboardCopy } from './clipboard-copy.js'; import { reallyClipboardCopyLocalName } from './constants.js'; import type { CopyError, CopySuccess } from './types.js'; export declare class ReallyClipboardCopy extends ClipboardCopy { } declare global { interface HTMLElementEventMap { 'copy-success': CustomEvent<CopySuccess>; 'copy-error': CustomEvent<CopyError>; } interface HTMLElementTagNameMap { [reallyClipboardCopyLocalName]: ReallyClipboardCopy; } } //# sourceMappingURL=really-clipboard-copy.d.ts.map