
The Clipboard API enables copy and pasting to/from the clipboard. On iOS this API also allows copying images and URLs.
import { Plugins } from '@capacitor/core';
const { Clipboard } = Plugins;
Clipboard.write({
  string: "Hello, Moto"
});
let result = await Clipboard.read();
console.log('Got', result.type, 'from clipboard:', result.value);