Skip to content

Commit 6d5d601

Browse files
committed
chore: repoint application out of internals
1 parent d6b9f7d commit 6d5d601

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/main/models/AdvancedRule.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
import { inspect } from "util";
2+
3+
import type { IRuleDefinition } from "../interfaces/IRuleDefinition";
4+
25
import { AdvancedConfig } from "../interfaces/AdvancedRuleConfig";
36
import { AdvancedRuleDefinition } from "../interfaces/AdvancedRuleDefintion";
47
import { AdvancedSuppression } from "../interfaces/AdvancedSuppression";
5-
import { IRuleDefinition, ResultDetails } from "../internals/internals";
8+
import { ResultDetails } from "../internals/internals";
69
import { Flow } from "./Flow";
710
import { RuleCommon } from "./RuleCommon";
811
import { RuleInfo } from "./RuleInfo";

src/main/rules/AutoLayout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as core from "../internals/internals";
22
import { AdvancedRule } from "../models/AdvancedRule";
33

4-
export class AutoLayout extends AdvancedRule implements core.IRuleDefinition {
4+
export class AutoLayout extends AdvancedRule {
55
constructor() {
66
super({
77
autoFixable: false,

0 commit comments

Comments
 (0)