Files
DefinitelyTyped/types/clipboardy/index.d.ts
2017-08-09 10:32:17 -07:00

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;