fix: imports

This commit is contained in:
2026-03-15 09:34:19 +08:00
parent 28794fd9f0
commit 9dbd406c0e
3 changed files with 8 additions and 5 deletions
+3 -4
View File
@@ -1,14 +1,13 @@
import { createSignal, For, Show, createMemo } from 'solid-js';
import { parsePlt, extractCutPaths, parsedPltToSvg } from '../../plotcutter/parser';
import { parsePlt, extractCutPaths } from '../../plotcutter/parser';
import { generateTravelPaths, travelPathsToSvg } from '../../plotcutter/layout';
import { pts2plotter } from '../../plotcutter/plotter';
import type { CardPath } from '../../plotcutter';
import type { CardShape } from '../../plotcutter';
import type { CardPath, CardShape } from '../../plotcutter/types';
import {
getCardShapePoints,
calculateCenter,
contourToSvgPath
} from '../../plotcutter';
} from '../../plotcutter/contour';
export interface PltPreviewProps {
/** PLT 文件内容 */