Cannot find namespace 'go'

345 Views Asked by At

I am integrating gojs in angular 8 project.

I have already installed gojs-angular package.

npm install gojs gojs-angular.

Below is the code snippet.

error: Cannot find namespace 'go'

public initDiagram(): go.Diagram {};

1

There are 1 best solutions below

0
On

Please follow and verify below steps.

  1. Install gojs and gojs-angular

npm i gojs gojs-angular

  1. import * as go from 'gojs';

We can just use variable by import in the component.ts file.

No need to add script or import in other places,