UNPKG

@builder.io/dev-tools

Version:

Builder.io Visual CMS Devtools

20 lines (19 loc) 708 B
import type { DevToolsSys } from "../../types"; import type { CLIArgs } from "../index"; import type { Component } from "./types"; export declare const displayComponentLibrarySummary: (components: Component[], indexedComponents: Component[], startTime: number, numFailed?: number, isForce?: boolean) => void; 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>;