global.ts 252 B

12345
  1. import { 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. };