UNPKG

probot

Version:

A framework for building GitHub Apps to automate and improve your workflow

9 lines (8 loc) 347 B
import type { ApplicationFunction } from "../types.js"; type ImportMetaResolve = (specifier: string, parent?: string) => string; export declare const resolveAppFunction: (appFnId: string, opts?: ResolveOptions) => Promise<ApplicationFunction>; export interface ResolveOptions { basedir?: string; resolver?: ImportMetaResolve; } export {};