@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
12 lines (11 loc) • 449 B
TypeScript
import type { RuleRepo } from "./add-rule-types";
export declare const CACHE_ROOT_DIR: string;
export declare const DEFAULT_BRANCH = "main";
export declare const RULE_FILE_EXTENSION = ".mdc";
/**
* Returns the cache directory for a given repository owner.
* @param owner - The repository owner.
* @returns The cache directory path.
*/
export declare function getRepoCacheDir(owner: string): string;
export declare const RULES_REPOS: RuleRepo[];