UNPKG

nowcoder-inout-binding

Version:

Provide print and readline function on Node.js

10 lines (9 loc) 301 B
/** * @param {any} value The value to print. * @param {string=} end The suffix of the sentence which will be printed, default is \n. */ declare function print(value: any, end: string?): void; /** * @returns {string} The content of the input line. */ declare function readline(): string;