//#region index.d.ts /** A single copyable item */ type ClippieCopyable = string | Blob; /** The content to copy */ type ClippieContent = ClippieCopyable | Array; /** A boolean indicating whether the copying was successful */ type ClippieResult = boolean; /** Options for the module */ type ClippieOpts = { /** Whether to reject on unexpected errors */reject?: boolean; }; /** Copies `content` to the clipboard, which can be text, images or an array of these */ declare function clippie(content: ClippieContent, { reject }?: ClippieOpts): Promise; //#endregion export { ClippieContent, ClippieCopyable, ClippieOpts, ClippieResult, clippie };