add basics for connecting to running instance

This commit is contained in:
Joel Wetzell
2026-03-11 21:04:33 -05:00
parent 335b5618f1
commit dee9867a6b
14 changed files with 240 additions and 109 deletions
+18
View File
@@ -0,0 +1,18 @@
export type RouterEvent<T, D> = {
type: T,
data?: D,
error?: string,
}
export type RouteEventData = {
index: number
}
export type InputEventData = {
source: string
}
export type OutputEventData = {
destination: string
}