Skip to content

Commit

Permalink
fix(types): export ApplicationFunction (#1631)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamacku committed Jan 3, 2022
1 parent bb068d9 commit 073f087
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
@@ -1,7 +1,7 @@
import { Logger } from "pino";

import { Context } from "./context";
import { Options, ApplicationFunctionOptions } from "./types";
import { Options, ApplicationFunction, ApplicationFunctionOptions } from "./types";
import { Probot } from "./probot";
import { Server } from "./server/server";
import { ProbotOctokit } from "./octokit/probot-octokit";
Expand All @@ -21,4 +21,4 @@ export {
};

/** NOTE: exported types might change at any point in time */
export { Options, ApplicationFunctionOptions };
export { Options, ApplicationFunction, ApplicationFunctionOptions };

0 comments on commit 073f087

Please sign in to comment.