UNPKG

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

12 lines (11 loc) 449 B
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[];