mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-01-23 19:27:04 +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;
|
|
}
|