-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathindex.d.ts
More file actions
31 lines (31 loc) · 784 Bytes
/
index.d.ts
File metadata and controls
31 lines (31 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
declare module "cz-customizable" {
export interface Option {
name: string;
value?: string;
}
export interface Options {
types: Option[];
scopes?: Option[];
scopeOverrides?: { [type: string]: Option[] };
messages?: {
type?: string,
scope?: string,
customScope?: string,
subject?: string,
body?: string,
breaking?: string,
footer?: string,
confirmCommit?: string,
};
allowCustomScopes?: boolean;
allowBreakingChanges?: string[];
skipQuestions?: string[];
appendBranchNameToCommitMessage?: boolean;
fallbackTicketNumber?: string;
ticketNumberPrefix?: string;
ticketNumberSuffix?: string;
breakingPrefix?: string;
footerPrefix?: string;
subjectLimit?: number;
}
}