8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import type { SimpleStream } from '../utils/SimpleStream'
|
|
|
|
export const ClearExec = async (stdin: SimpleStream<string>, stdout: SimpleStream<string>): Promise<number> => {
|
|
stdout.emit("\f")
|
|
|
|
return 0
|
|
}
|