-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
82 lines (71 loc) · 1.35 KB
/
index.d.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
declare global {
var skipTerminalCleanup: boolean
}
export type CommandNewOptions = {
ecosystem?: string
templateName?: string
projectName?: string
force?: boolean
options?: string
}
export type CommandFixOptions = {
yes?: boolean
match?: string[]
exclude?: string[]
only?: string[]
}
export type CommandInstallOptions = {}
export type CommandReposOptions = {}
export type CommandScriptOptions = {}
export type CommandStartServerOptions = {
prebundle?: boolean
}
// Fix.
export type Project =
| {
type: 'only-directory'
rootDir: string
name: string
}
| {
type: 'under-version-control'
rootDir: string
name: string
branchName: string
}
| {
type: 'with-remote-url'
rootDir: string
name: string
branchName: string
remoteName: string
remoteUrl: string
owner: string
}
export type Issues = (arg0: {
project: Project
config: {
projectSize: 'small' | 'large'
ignoredChecks: string[]
}
}) => AsyncGenerator<Issue>
export type Issue = {
message: string | string[]
fix?: (() => void) | (() => Promise<void>)
}
// Install.
type InstalledProjectData = {
isCloned: boolean
isInstalled: boolean
gitRef: string
latestGitRef: string
versions: string[]
}
export type InstalledProject = {
name: string
url: string
install: string
uninstall: string
installed: () => Promise<boolean>
data?: ProjectData
}