File size: 190 Bytes
4d70170
 
 
 
 
 
1
2
3
4
5
6
7
import type { Bridge } from './bridge'

export interface Shell {
  connect: (cb: ((bridge: Bridge) => void | Promise<void>)) => void
  onReload: (cb: (() => void | Promise<void>)) => void
}