bolt.diy / app /types /terminal.ts
Sam Denty
fix: remove monorepo
6fb59d2 unverified
raw
history blame
186 Bytes
export interface ITerminal {
readonly cols?: number;
readonly rows?: number;
reset: () => void;
write: (data: string) => void;
onData: (cb: (data: string) => void) => void;
}