mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-29 21:17:34 +00:00
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
// Type definitions for get-stdin 5.0
|
|
// Project: https://github.com/sindresorhus/get-stdin
|
|
// Definitions by: Daniel Rosenwasser <https://github.com/DanielRosenwasser>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
declare function getStdin(): Promise<string>;
|
|
declare namespace getStdin {
|
|
function buffer(): Promise<Buffer>;
|
|
}
|
|
|
|
export = getStdin;
|