bolt.diy / app /types /terminal.ts
Heuehneje's picture
bolt.diy
baa4c21 verified
raw
history blame contribute delete
228 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;
}