@reliverse/rse-sdk
Version:
@reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).
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;
}>;