clipboard-polyfill
Version:
A polyfill for the asynchronous clipboard API
10 lines (9 loc) • 377 B
TypeScript
import { ClipboardItemConstructor, ClipboardWithoutEventTarget } from "../../ClipboardItem/spec";
import { setDebugLog, suppressWarnings } from "../../debug";
declare global {
var clipboard: ClipboardWithoutEventTarget & {
ClipboardItem: ClipboardItemConstructor;
setDebugLog: typeof setDebugLog;
suppressWarnings: typeof suppressWarnings;
};
}