mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 14:32:46 +00:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
export interface ITerminal {
|
|
readonly cols?: number;
|
|
readonly rows?: number;
|
|
|
|
reset: () => void;
|
|
write: (data: string) => void;
|
|
onData: (cb: (data: string) => void) => void;
|
|
}
|