CliSite/commands/beep.ts

6 lines
134 B
TypeScript
Raw Permalink Normal View History

2022-06-12 12:41:52 +02:00
import {Socket} from "socket.io";
function beep(socket:Socket):string{
socket.emit("bell");
return "Beeped\n"
}
export {beep};