Skip to content

Commit f80eb0f

Browse files
committed
style(ts): use import type syntax
1 parent f1ba279 commit f80eb0f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/engine.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import { footerMaker } from './prompts/footer-maker';
77
import { bodyMaker } from './prompts/body-maker';
88
import { scopeMaker } from './prompts/scope-maker';
99
import { subjectMaker } from './prompts/subject-maker';
10-
import { Question, commitTemplate } from './commit-template';
10+
import type { Question } from './commit-template';
11+
import { commitTemplate } from './commit-template';
1112

1213
function buildQuestions(rules: QualifiedRules) {
1314
const combinedQuestions = pipeWith<Question[]>(

0 commit comments

Comments
 (0)