global.ts 257 B

12345
  1. import type { IGraphViewerGlobal } from '../interfaces/graph-viewer';
  2. export const isGraphViewerGlobal = (val: unknown): val is IGraphViewerGlobal => {
  3. return (typeof val === 'function' && 'createViewerForElement' in val && 'processElements' in val);
  4. };