style: format

This commit is contained in:
元凛
2022-02-10 17:55:52 +08:00
parent bdb9ee8890
commit c626dd5ef0
13 changed files with 218 additions and 126 deletions

View File

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