/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface LinkedIssue { /** * The ID of an issue. Required if `key` isn't provided. */ id?: string; /** * The key of an issue. Required if `id` isn't provided. */ key?: string; } //# sourceMappingURL=LinkedIssue.d.ts.map