8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
import { RedmineTypes } from '../models/redmine-types';
|
|
|
|
export interface IssueEnhancerInterface {
|
|
name: string;
|
|
enhance(
|
|
issue: RedmineTypes.Issue,
|
|
): Promise<RedmineTypes.Issue & Record<string, any>>;
|
|
}
|