@reliverse/rse
Version:
@reliverse/rse is your all-in-one companion for bootstrapping and improving any kind of projects (especially web apps built with frameworks like Next.js) — whether you're kicking off something new or upgrading an existing app. It is also a little AI-power
13 lines (12 loc) • 517 B
TypeScript
import type { ReliverseMemory } from "../../../../utils/schemaMemory.js";
/**
* Clones a repository to a temporary directory and copies specified files
*/
export declare function archiveExistingRepoContent(repoUrl: string, projectPath: string): Promise<{
success: boolean;
externalRseConfig?: string;
}>;
export declare function handleExistingRepoContent(memory: ReliverseMemory, repoOwner: string, repoName: string, projectPath: string): Promise<{
success: boolean;
externalRseConfig?: string;
}>;