mirror of
https://github.com/harivansh-afk/asap.it.git
synced 2026-04-15 13:03:42 +00:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
export interface ITerminal {
|
|
readonly cols?: number;
|
|
readonly rows?: number;
|
|
|
|
reset: () => void;
|
|
write: (data: string) => void;
|
|
onData: (cb: (data: string) => void) => void;
|
|
input: (data: string) => void;
|
|
}
|