import type { ParsedBranch } from "../branch/branch.types"; import type { PRCategory } from "../intershell-config/intershell-config.types"; export type CommitMessageData = { subject: string; type: "other"; scopes?: string[]; description: string; bodyLines: string[]; isBreaking: boolean; isMerge: boolean; isDependency: boolean; } | { subject: string; type: string; scopes?: string[]; description: string; bodyLines: string[]; isBreaking: boolean; isMerge: boolean; isDependency: boolean; }; export interface PRStats { readonly commitCount: number; readonly fileCount?: number; readonly linesAdded?: number; readonly linesDeleted?: number; } export type PRInfo = { prNumber: string; prCategory: PRCategory; prStats: PRStats; prCommits: ParsedCommitData[]; prBranchName: ParsedBranch; }; export declare const prCategories: Record; export interface ParsedCommitData { message: CommitMessageData; info?: { hash: string; author?: string; date?: string; }; pr?: PRInfo; files?: string[]; } //# sourceMappingURL=commit.types.d.ts.map