@elsikora/git-branch-lint
Version:
Lint your git branch names
12 lines (11 loc) • 324 B
TypeScript
/**
* Repository interface for configuration operations
*/
import type { IBranchLintConfig } from "../type/config.type";
export interface IConfigRepository {
/**
* Get the branch configuration
* @param appName The name of the application
*/
getConfig(appName: string): Promise<IBranchLintConfig>;
}