UNPKG

@builder.io/dev-tools

Version:

Builder.io Visual CMS Devtools

18 lines (17 loc) 484 B
import type { DevToolsSys } from "../types"; import type { CLIArgs } from "./index"; export interface RepoIndexingDoc { name: string; content: string | { name: string; description: string; components: string[]; relevantFiles: string[]; }[]; createdDate: string; description: string; id: string; ownerId: string; userId: string; } export declare const runRepoIndexing: (sys: DevToolsSys, args: CLIArgs) => Promise<void>;