UNPKG

@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

18 lines (17 loc) 703 B
import type { RseConfig } from "@reliverse/cfg"; import { type DownloadResult } from "./downloadRepo.js"; export declare function handleDownload({ cwd, isDev, skipPrompts, projectPath, projectName, selectedRepo, githubToken, config, preserveGit, install, isCustom, isTemplateDownload, cache, }: { cwd: string; isDev: boolean; skipPrompts: boolean; projectPath: string; projectName: string; selectedRepo: string; githubToken?: string | undefined; preserveGit?: boolean | undefined; config?: RseConfig | undefined; install?: boolean | undefined; isCustom?: boolean | undefined; isTemplateDownload: boolean; cache?: boolean; }): Promise<DownloadResult>;