need dist for plugins
Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
This commit is contained in:
15
dist/features/tmux-subagent/polling-manager.d.ts
vendored
Normal file
15
dist/features/tmux-subagent/polling-manager.d.ts
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import type { PluginInput } from "@opencode-ai/plugin";
|
||||
import type { TrackedSession } from "./types";
|
||||
type OpencodeClient = PluginInput["client"];
|
||||
export declare class TmuxPollingManager {
|
||||
private client;
|
||||
private sessions;
|
||||
private closeSessionById;
|
||||
private pollInterval?;
|
||||
private pollingInFlight;
|
||||
constructor(client: OpencodeClient, sessions: Map<string, TrackedSession>, closeSessionById: (sessionId: string) => Promise<void>);
|
||||
startPolling(): void;
|
||||
stopPolling(): void;
|
||||
private pollSessions;
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user