UNPKG

relaycode

Version:

A developer assistant that automates applying code changes from LLMs.

8 lines (6 loc) 278 B
type Prompter = (question: string) => Promise<boolean>; declare const getConfirmation: Prompter; declare const createConfirmationHandler: (options?: { yes?: boolean; }, prompter?: Prompter) => Prompter; export { type Prompter, createConfirmationHandler, getConfirmation };