@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).
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>;