fix(core): use static tool type imports (#31170)

This commit is contained in:
Kit Langton 2026-06-06 20:54:37 -04:00 committed by GitHub
commit 807c804c24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 6 deletions

View file

@ -13,10 +13,11 @@ import { SessionProjector } from "../session/projector"
import { SessionStore } from "../session/store"
import { ApplicationTools } from "../tool/application-tools"
import { Session } from "./session"
import { Tool } from "./tool"
export interface Interface {
readonly sessions: Session.Interface
readonly tools: import("./tool").Service
readonly tools: Tool.Interface
}
/** Intentional public native API for Effect applications embedding OpenCode. */