@rbxts/red
roblox-ts wrapper around Red.
Example
Server
import { Server, Clock } from "@rbxts/red";
const Net = Server("Net");
Clock(5, () => Net.FireAll("HelloWorld"));
Client
import { Client } from "@rbxts/red";
const Net = Client("Net");
Net.On("HelloWorld", () => print("Hello, world!"));