gooddaytoday / mxgraph-typescript-definitions

Typescript definitions d.ts for mxgraph library. Is anyone need in it? star this or email me for collaboration.
65 stars 11 forks source link

new declare class #2

Closed rickyfabians closed 6 years ago

rickyfabians commented 6 years ago

i want to add code like :

return [new mxConnectionConstraint(new mxPoint(0, 0), true,'uhu');

in my component, so i added new function / class in View.d.ts :

declare class mxConnectionConstraint {

constructor(point: any, perimeter: any,name?:any); point: any; perimeter: any; name:any;

} but i got error TS2304: Cannot find name 'mxConnectionConstraint' how can i fix this? thanks