mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-04 06:19:24 +08:00
10 lines
415 B
TypeScript
10 lines
415 B
TypeScript
// Type definitions for clipboardy 1.1
|
|
// Project: https://github.com/sindresorhus/clipboardy#readme
|
|
// Definitions by: BendingBender <https://github.com/BendingBender>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export function write(input: string): Promise<void>;
|
|
export function writeSync(input: string): void;
|
|
export function read(): Promise<string>;
|
|
export function readSync(): string;
|