(message: string, ...args: any[])
| 56 | } |
| 57 | |
| 58 | export async function warn(message: string, ...args: any[]): Promise<void> { |
| 59 | await clearLine(process.stderr) |
| 60 | await writeStderr(format(label('warn', message), ...args)) |
| 61 | await writeStderr('\n') |
| 62 | } |
| 63 | |
| 64 | export function getStdinAsString(): Promise<string> { |
| 65 | let result = '' |
no test coverage detected