Files
issues-helper/src/helper/types.ts
2022-02-10 17:55:52 +08:00

6 lines
133 B
TypeScript

import type { TAction } from '../types';
export interface IIssueHelperEngine {
doExeAction: (action: TAction) => Promise<void>;
}