/** * Welcome Issue creation module * * Creates an initial welcome Issue to demonstrate automation */ interface WelcomeIssue { number: number; html_url: string; } /** * Create welcome Issue with instructions */ export declare function createWelcomeIssue(owner: string, repo: string, token: string): Promise; export {}; //# sourceMappingURL=welcome.d.ts.map