Răsfoiți Sursa

fix import line

Yuki Takei 3 ani în urmă
părinte
comite
77e98c68f8
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      packages/remark-drawio-plugin/src/utils/global.ts

+ 1 - 1
packages/remark-drawio-plugin/src/utils/global.ts

@@ -1,4 +1,4 @@
-import { IGraphViewer } from '~/interfaces/graph-viewer';
+import { IGraphViewer } from '../interfaces/graph-viewer';
 
 export const isGraphViewer = (val: unknown): val is IGraphViewer => {
   return (typeof val === 'function' && 'createViewerForElement' in val && 'processElements' in val);