UNPKG

716 BTypeScriptView Raw
1import { ExtensionPack } from "@atomist/sdm";
2/**
3 * @deprecated Use issueSupport(options: IssueSupportOptions) instead
4 */
5export declare const IssueSupport: ExtensionPack;
6/**
7 * Options to configure the issue
8 */
9export interface IssueSupportOptions {
10 /**
11 * Label issues with environment names when deployment events occur
12 */
13 labelIssuesOnDeployment?: boolean;
14 /**
15 * Close issue created by the review listener
16 */
17 closeCodeInspectionIssuesOnBranchDeletion?: {
18 enabled: boolean;
19 source: string | string[];
20 };
21}
22/**
23 * Configure the issue extension pack
24 * @param options
25 */
26export declare function issueSupport(options?: IssueSupportOptions): ExtensionPack;