index.d.ts 940 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /// <reference lib="dom"/>
  2. export interface Options {
  3. /**
  4. Specify a DOM element where the temporary, behind-the-scenes `textarea` should be appended, in cases where you need to stay within a focus trap, like in a modal.
  5. @default document.body
  6. @example
  7. ```
  8. import copy from 'copy-text-to-clipboard';
  9. const modalWithFocusTrap = document.getElementById('modal');
  10. button.addEventListener('click', () => {
  11. copy('🦄🌈', {
  12. target: modalWithFocusTrap
  13. });
  14. });
  15. ```
  16. */
  17. readonly target?: HTMLElement;
  18. }
  19. /**
  20. Copy text to the clipboard.
  21. Must be called in response to a user gesture event, like `click` or `keyup`.
  22. @param text - The text to copy to clipboard.
  23. @returns Whether it succeeded to copy the text.
  24. @example
  25. ```
  26. import copy from 'copy-text-to-clipboard';
  27. button.addEventListener('click', () => {
  28. copy('🦄🌈');
  29. });
  30. ```
  31. */
  32. export default function copyTextToClipboard(text: string, options?: Options): boolean;