Przeglądaj źródła

fix import line

Yuki Takei 3 lat temu
rodzic
commit
77e98c68f8

+ 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);