A Typescript server emulator for Box Critters, a defunct virtual world.
1/* 2 Typescript doesn't seem to recognize the functions of the chalk_deno module, so some are specified here to avoid type warnings. 3*/ 4 5declare module "https://deno.land/x/chalk_deno@v4.1.1-deno/source/index.js" { 6 export function red(text: string): string; 7 export function green(text: string): string; 8 export function blue(text: string): string; 9 export function gray(text: string): string; 10}