UNPKG

relaycode

Version:

A developer assistant that automates applying code changes from LLMs.

12 lines (9 loc) 648 B
import { Config } from 'relaycode-core'; declare const findConfigPath: (cwd?: string) => Promise<string | null>; declare const findConfig: (cwd?: string) => Promise<Config | null>; declare const loadConfigOrExit: (cwd?: string) => Promise<Config>; declare const getStateDirectory: (cwd: string) => string; declare const ensureStateDirExists: (cwd?: string) => Promise<void>; declare const createConfig: (projectId: string, cwd?: string) => Promise<Config>; declare const getProjectId: (cwd?: string) => Promise<string>; export { createConfig, ensureStateDirExists, findConfig, findConfigPath, getProjectId, getStateDirectory, loadConfigOrExit };