global.d.ts 183 B

1234567891011
  1. interface Window {
  2. ClipboardItem: any;
  3. }
  4. interface Clipboard extends EventTarget {
  5. write(data: any[]): Promise<void>;
  6. }
  7. type Mutable<T> = {
  8. -readonly [P in keyof T]: T[P];
  9. };