@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
11 lines (10 loc) • 509 B
TypeScript
import type { RseConfig } from "@reliverse/cfg";
import type { GitModParams } from "../../../../sdk-types.js";
import type { RepoOption } from "../../../../utils/projectRepository.js";
import type { ReliverseMemory } from "../../../../utils/schemaMemory.js";
export declare function handleExistingRepo(params: GitModParams & {
memory: ReliverseMemory;
config: RseConfig;
githubUsername: string;
selectedTemplate: RepoOption;
}, shouldCommitAndPush: boolean, isDev: boolean): Promise<boolean>;