fix any in NetscriptPorts

This commit is contained in:
Olivier Gagnon 2022-07-18 03:09:19 -04:00
parent 7195c1b540
commit fbd6b1b28c

@ -1,10 +1,10 @@
import { Settings } from "./Settings/Settings"; import { Settings } from "./Settings/Settings";
export interface IPort { export interface IPort {
write: (value: any) => any; write: (value: unknown) => unknown;
tryWrite: (value: any) => boolean; tryWrite: (value: unknown) => boolean;
read: () => any; read: () => unknown;
peek: () => any; peek: () => unknown;
full: () => boolean; full: () => boolean;
empty: () => boolean; empty: () => boolean;
clear: () => void; clear: () => void;