Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
T1ckbase
/
bolt.diy
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6eea1a9
bolt.diy
/
app
/
types
/
terminal.ts
Sam Denty
fix: remove monorepo
6fb59d2
unverified
12 months ago
raw
Copy download link
history
blame
Safe
186 Bytes
export
interface
ITerminal
{
readonly
cols?:
number
;
readonly
rows?:
number
;
reset
:
() =>
void
;
write
:
(
data:
string
) =>
void
;
onData
:
(
cb: (data:
string
) =>
void
) =>
void
;
}