relaycode
Version:
A developer assistant that automates applying code changes from LLMs.
10 lines (8 loc) • 904 B
text/typescript
declare const createNotifier: (messageTemplate: (param: string) => string) => (param: string, enableNotifications?: boolean) => void;
declare const notifyPatchDetected: (param: string, enableNotifications?: boolean) => void;
declare const notifyApprovalRequired: (param: string, enableNotifications?: boolean) => void;
declare const notifySuccess: (param: string, enableNotifications?: boolean) => void;
declare const notifyFailure: (param: string, enableNotifications?: boolean) => void;
declare const notifyRollbackFailure: (param: string, enableNotifications?: boolean) => void;
declare const requestApprovalWithNotification: (projectId: string, enableNotifications?: boolean) => Promise<"approved" | "rejected" | "timeout" | "unsupported">;
export { createNotifier, notifyApprovalRequired, notifyFailure, notifyPatchDetected, notifyRollbackFailure, notifySuccess, requestApprovalWithNotification };