This commit is contained in:
DelLevin-Home
2026-03-10 22:06:32 +08:00
commit a4a326401e
19281 changed files with 2255158 additions and 0 deletions

37
node_modules/clipboardy/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,37 @@
/**
Write (copy) to the clipboard asynchronously.
@param text - The text to write to the clipboard.
*/
export function write(text: string): Promise<void>;
/**
Write (copy) to the clipboard synchronously.
Doesn't work in browsers.
@param text - The text to write to the clipboard.
@example
```
import * as clipboardy from 'clipboardy';
clipboardy.writeSync('🦄');
clipboardy.readSync();
//=> '🦄'
```
*/
export function writeSync(text: string): void;
/**
Read (paste) from the clipboard asynchronously.
*/
export function read(): Promise<string>;
/**
Read (paste) from the clipboard synchronously.
Doesn't work in browsers.
*/
export function readSync(): string;