Add types file

This commit is contained in:
Jon Staab
2024-11-13 10:32:47 -08:00
parent f6f5f26734
commit da3db67aa6

9
src/types.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
import type {NetContext} from "@welshman/net"
import type {AppContext} from "@welshman/app"
declare module "@welshman/lib" {
interface Context {
net: NetContext
app: AppContext
}
}