forked from coracle/flotilla
10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
import type {NetContext} from "@welshman/net"
|
|
import type {AppContext} from "@welshman/app"
|
|
|
|
declare module "@welshman/lib" {
|
|
interface Context {
|
|
net: NetContext
|
|
app: AppContext
|
|
}
|
|
}
|