-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathprompt.ts
54 lines (49 loc) · 887 Bytes
/
prompt.ts
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
export type RuleField =
| 'header'
| 'type'
| 'scope'
| 'subject'
| 'body'
| 'footer';
export type PromptName =
| RuleField
| 'isBreaking'
| 'breakingBody'
| 'breaking'
| 'isIssueAffected'
| 'issuesBody'
| 'issues';
export type PromptConfig = {
messages: PromptMessages;
questions: Partial<
Record<
PromptName,
{
description?: string;
messages?: {[K: string]: string};
enum?: {
[enumName: string]: {
description?: string;
title?: string;
emoji?: string;
};
};
}
>
>;
};
export type PromptMessages = {
skip?: string;
max?: string;
min?: string;
emptyWarning?: string;
upperLimitWarning?: string;
lowerLimitWarning?: string;
[_key: string]: string | undefined;
};
export type UserPromptConfig = DeepPartial<PromptConfig>;
type DeepPartial<T> = {
[P in keyof T]?: {
[K in keyof T[P]]?: T[P][K];
};
};