diff --git a/src/utils/terminal.ts b/src/utils/terminal.ts index 728ef2b0..2ccb70cb 100644 --- a/src/utils/terminal.ts +++ b/src/utils/terminal.ts @@ -1,10 +1,5 @@ import { styleText } from "node:util"; -// TODO: Remove when node typings are updated (this would be around Node.js 22) -declare module "node:util" { - function styleText(style: string, text: string): string; -} - export function highlight(s: string): string { return styleText("bgCyan", styleText("whiteBright", s)); }