diff options
author | wlodekm <[email protected]> | 2024-11-26 13:08:40 +0200 |
---|---|---|
committer | wlodekm <[email protected]> | 2024-11-26 13:08:40 +0200 |
commit | 5deacee61b572d7a83225073567b4758d1854adf (patch) | |
tree | 146f11a6760dc1adba0b5f438189db0b5202b498 /screen.ts | |
parent | 12fa89c91ecbd2af9592b38bcb2b17c7c7325cdb (diff) |
solve some problems
Diffstat (limited to 'screen.ts')
-rw-r--r-- | screen.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/screen.ts b/screen.ts index 324ce7b..7d47412 100644 --- a/screen.ts +++ b/screen.ts @@ -1,8 +1,11 @@ -// deno-lint-ignore-file no-process-globals ban-ts-comment no-explicit-any +// deno-lint-ignore ban-unused-ignore +// deno-lint-ignore ban-unused-ignore +// deno-lint-ignore-file no-process-globals ban-ts-comment no-explicit-any ban-unused-ignore // ^ problem solved import { Key } from "node:readline"; import type { Element, Input, Text, Button } from "./elements.ts" import { Buffer } from "node:buffer"; +import process from "node:process"; const logs: string[] = []; |