UNPKG

@graphikartistry/cursor-doc-automation

Version:

Cursor IDE extension for autonomous documentation and ticket management

13 lines (12 loc) 280 B
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 {};