bolt.diy / app /types /terminal.ts
aproli90's picture
Upload 289 files
2e1ab99 verified
raw
history blame
219 Bytes
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;
}