Skip to content

Commit

Permalink
Flatten some parts of the hierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
ator-dev committed Sep 9, 2024
1 parent 4fe4445 commit 420d52c
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/content.mts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { type MatchMode, MatchTerm, termEquals, TermTokens, TermPatterns } from
import { EleID } from "/dist/modules/common.mjs";
import { type AbstractEngineManager, EngineManager } from "/dist/modules/highlight/engine-manager.mjs";
import { type AbstractToolbar, type ControlButtonName } from "/dist/modules/interface/toolbar.d.mjs";
import { Toolbar } from "/dist/modules/interface/toolbars/toolbar.mjs";
import { Toolbar } from "/dist/modules/interface/toolbar.mjs";
import { assert, itemsMatch } from "/dist/modules/common.mjs";

type GetToolbar<CreateIfNull extends boolean> = (CreateIfNull extends true
Expand Down
2 changes: 1 addition & 1 deletion src/modules/highlight/engines/highlight.mts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import type { AbstractTreeCacheEngine } from "/dist/modules/highlight/models/tree-cache.d.mjs";
import type { AbstractFlowTracker, Flow, Span } from "/dist/modules/highlight/models/tree-cache/flow-tracker.d.mjs";
import { FlowTracker } from "/dist/modules/highlight/models/tree-cache/flow-trackers/flow-tracker.mjs";
import { FlowTracker } from "/dist/modules/highlight/models/tree-cache/flow-tracker.mjs";
import * as TermCSS from "/dist/modules/highlight/term-css.mjs";
import type { MatchTerm, TermTokens, TermPatterns } from "/dist/modules/match-term.mjs";
import { StyleManager } from "/dist/modules/style-manager.mjs";
Expand Down
2 changes: 1 addition & 1 deletion src/modules/highlight/engines/paint.mts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { AbstractMethod } from "/dist/modules/highlight/engines/paint/metho
import { getBoxesOwned } from "/dist/modules/highlight/engines/paint/boxes.mjs";
import type { AbstractTreeCacheEngine } from "/dist/modules/highlight/models/tree-cache.d.mjs";
import type { AbstractFlowTracker, Flow, Span } from "/dist/modules/highlight/models/tree-cache/flow-tracker.d.mjs";
import { FlowTracker } from "/dist/modules/highlight/models/tree-cache/flow-trackers/flow-tracker.mjs";
import { FlowTracker } from "/dist/modules/highlight/models/tree-cache/flow-tracker.mjs";
import { highlightTags } from "/dist/modules/highlight/highlight-tags.mjs";
import * as TermCSS from "/dist/modules/highlight/term-css.mjs";
import type { MatchTerm, TermTokens, TermPatterns } from "/dist/modules/match-term.mjs";
Expand Down
File renamed without changes.

0 comments on commit 420d52c

Please sign in to comment.