forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
48 lines (43 loc) · 790 Bytes
/
types.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
export type Commit = {
commit: CommitOrTree
tree: CommitOrTree
author: AuthorOrCommitter
committer: AuthorOrCommitter
subject: string
body: string
parsed: Parsed
}
export type CommitOrTree = {
long: string
short: string
}
export type AuthorOrCommitter = {
name: string
email: string
date: string
}
export type Parsed = {
type: string
scope?: string | null
subject: string
merge?: null
header: string
body?: null
footer?: null
notes?: null[] | null
references?: null[] | null
mentions?: null[] | null
revert?: null
raw: string
}
export type Package = {
name: string
packageDir: string
srcDir: string
dependencies?: string[]
peerDependencies?: string[]
}
export type BranchConfig = {
prerelease: boolean
ghRelease: boolean
}