Skip to content

Instantly share code, notes, and snippets.

@michabaur
michabaur / new 1.js
Created September 6, 2021 07:09
Gist from API Documentation Editor
thzrthhgfj
@michabaur
michabaur / ExtendingClass.js
Created February 9, 2017 14:00
yWorks Edge Constructor Issue Repro
define(['yfiles/impl/graph-styles-core'], (yfiles) => {
class ExtendingClass extends yfiles.styles.OMC {
constructor() {
super();
}
}
return {ExtendingClass}
});