Closed jamacku closed 2 years ago
I made mistake in export in original declaration file.
export
Currently in TypeScript:
import run from "@probot/adapter-github-actions"; import app from "./app"; run.run(app);
This change will simplify calling of run() function:
run()
import run from "@probot/adapter-github-actions"; import app from "./app"; run(app);
I made mistake in
export
in original declaration file.Currently in TypeScript:
This change will simplify calling of
run()
function: