import type { Bridge } from './bridge' export interface Shell { connect: (cb: ((bridge: Bridge) => void | Promise)) => void onReload: (cb: (() => void | Promise)) => void }