reg-notify-gitlab-plugin
Version:
Notify reg-suit result to GitLab repository
7 lines (6 loc) • 358 B
TypeScript
import { PreparerQuestion, PluginCreateOptions, PluginPreparer } from "reg-suit-interface";
import { GitLabPluginOption } from "./gitlab-notifier-plugin";
export declare class GitLabPreparer implements PluginPreparer<undefined, GitLabPluginOption> {
inquire(): PreparerQuestion[];
prepare(option: PluginCreateOptions): Promise<GitLabPluginOption>;
}