soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame contribute delete
190 Bytes
import type { Bridge } from './bridge'
export interface Shell {
connect: (cb: ((bridge: Bridge) => void | Promise<void>)) => void
onReload: (cb: (() => void | Promise<void>)) => void
}