mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-20 02:35:58 +08:00
6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
import type { TAction } from '../types';
|
|
|
|
export interface IIssueHelperEngine {
|
|
doExeAction: (action: TAction) => Promise<void>;
|
|
}
|