UNPKG

@elsikora/git-branch-lint

Version:
14 lines (13 loc) 529 B
import type { IConfigRepository } from "../../domain/interface/config.repository.interface"; import type { IBranchLintConfig } from "../../domain/type/config.type"; /** * Cosmiconfig implementation of ConfigRepository */ export declare class CosmiconfigRepository implements IConfigRepository { /** * Get the branch configuration * @param appName The name of the application * @returns A promise that resolves to the branch configuration */ getConfig(appName: string): Promise<IBranchLintConfig>; }