You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
676 B
37 lines
676 B
/**
|
|
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;
|
|
|