import type { RuleConfigCondition, RuleConfigSeverity } from "@commitlint/types"; export type RuleEntry = [string, Readonly<[RuleConfigSeverity.Disabled]>] | [string, Readonly<[RuleConfigSeverity, RuleConfigCondition]>] | [string, Readonly<[RuleConfigSeverity, RuleConfigCondition, unknown]>]; export type InputSetting = { description?: string; enumerables?: Record; multiline?: boolean; header?: { length?: number; }; }; export type ResultPart = "type" | "scope" | "subject" | "body" | "footer"; export type Result = Partial>; //# sourceMappingURL=types.d.ts.map