chore: include pre-built dist for github install
This commit is contained in:
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
import type { PluginInput } from "@opencode-ai/plugin";
|
||||
import type { Task } from "../../features/claude-tasks/types.ts";
|
||||
export interface TodoInfo {
|
||||
id?: string;
|
||||
content: string;
|
||||
status: "pending" | "in_progress" | "completed" | "cancelled";
|
||||
priority?: "low" | "medium" | "high";
|
||||
}
|
||||
type TodoWriter = (input: {
|
||||
sessionID: string;
|
||||
todos: TodoInfo[];
|
||||
}) => Promise<void>;
|
||||
export declare function syncTaskToTodo(task: Task): TodoInfo | null;
|
||||
export declare function syncTaskTodoUpdate(ctx: PluginInput | undefined, task: Task, sessionID: string, writer?: TodoWriter): Promise<void>;
|
||||
export declare function syncAllTasksToTodos(ctx: PluginInput, tasks: Task[], sessionID?: string, writer?: TodoWriter): Promise<void>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user