forked from sindresorhus/new-github-issue-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
108 lines (87 loc) · 2.51 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
declare namespace newGithubIssueUrl {
interface CommonOptions {
/**
The issue body.
*/
readonly body?: string;
/**
The issue title.
*/
readonly title?: string;
/**
Use an [issue template](https://help.github.com/articles/manually-creating-a-single-issue-template-for-your-repository/).
@example
```
'unicorn.md' // If you want to use a template at `ISSUE_TEMPLATE/unicorn.md`.
```
*/
readonly template?: string;
/**
The labels for the issue.
_Requires the user to have the permission to add labels._
*/
readonly labels?: string[];
/**
The milestone for the issue.
_Requires the user to have the permission to add milestone._
*/
readonly milestone?: string;
/**
The user to assign to the issue.
_Requires the user to have the permission to add assignee._
*/
readonly assignee?: string;
/**
The projects to add the issue to.
The project reference format is `user/<project-number>`, for example, if the URL to the project is `https://github.com/sindresorhus/some-repo/projects/3`, the project reference would be `some-repo/3`.
_Requires the user to have the permission to add projects._
*/
readonly projects?: string[];
}
interface RepoUrlOptions extends CommonOptions {
/**
The full URL to the repo.
*/
readonly repoUrl: string;
}
interface UserAndRepoOptions extends CommonOptions {
/**
GitHub username or organization.
*/
readonly user: string;
/**
GitHub repo.
*/
readonly repo: string;
}
/**
You are required to either specify the `repoUrl` option or both the `user` and `repo` options.
*/
type Options = RepoUrlOptions | UserAndRepoOptions;
}
declare const newGithubIssueUrl: {
/**
Generate a URL for opening a new GitHub issue with prefilled title, body, and other fields.
@example
```
import newGithubIssueUrl = require('new-github-issue-url');
import open = require('open');
const url = newGithubIssueUrl({
user: 'sindresorhus',
repo: 'new-github-issue-url',
body: '\n\n\n---\nI\'m a human. Please be nice.'
});
//=> 'https://github.com/sindresorhus/new-github-issue-url/issues/new?body=%0A%0A%0A---%0AI%27m+a+human.+Please+be+nice.'
// Then open it
(async () => {
await open(url);
}}();
```
*/
(options: newGithubIssueUrl.Options): string;
// TODO: Remove this for the next major release, refactor the whole definition to:
// declare function newGithubIssueUrl(options: newGithubIssueUrl.Options): string;
// export = newGithubIssueUrl;
default: typeof newGithubIssueUrl;
};
export = newGithubIssueUrl;