generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
17 lines (16 loc) • 616 B
TypeScript
type GithubIssue = {
owner: string;
repository: string;
issue: string;
};
export declare const parseIssue: (issue: string) => GithubIssue;
export declare const getGithubOutputFile: () => string | undefined;
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>;
export declare const getGithubSummaryFile: () => string | undefined;
export declare const appendToSummary: (summary: string) => void;
export {};