Files
oh-my-opencode/dist/features/background-agent/background-task-notification-template.d.ts
T
2026-03-14 04:56:50 +00:00

11 lines
408 B
TypeScript

import type { BackgroundTask } from "./types";
export type BackgroundTaskNotificationStatus = "COMPLETED" | "CANCELLED" | "INTERRUPTED";
export declare function buildBackgroundTaskNotificationText(input: {
task: BackgroundTask;
duration: string;
statusText: BackgroundTaskNotificationStatus;
allComplete: boolean;
remainingCount: number;
completedTasks: BackgroundTask[];
}): string;