UNPKG
@graphikartistry/cursor-doc-automation
Version:
latest (1.0.1)
1.0.1
1.0.0
Cursor IDE extension for autonomous documentation and ticket management
@graphikartistry/cursor-doc-automation
/
dist
/
github
/
githubClient.d.ts
13 lines
(12 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
interface
PullRequestOptions
{
title
:
string
;
body
:
string
;
branch
:
string
; }
export
declare
class
GitHubClient
{
private
token;
private
baseUrl;
constructor
(
token
:
string
);
createPullRequest
(
options
:
PullRequestOptions
):
Promise
<
string
>; }
export
{};