generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
12 lines (11 loc) • 383 B
TypeScript
export declare const parseIssue: (issue: string) => undefined | {
owner: string;
repository: string;
issue: string;
};
export declare const setGithubTaskOutput: (name: string, value: string | boolean | number) => void;
export declare const getGithubIssue: ({ owner, repository, issue }: {
owner: string;
repository: string;
issue: string;
}) => Promise<any>;