archematics/etc/deps/geogebraAmbient.d.ts
Glen Whitney 58469f793e feat: Get plugin working with Joyce Geometry Applets as well
Since third-party code may not be loaded from the web in an extension,
  requires bundling many GeoGebra app files into the extension.

  Still to come: control panel for the extension.
2023-10-04 16:39:55 -07:00

8 lines
229 B
TypeScript

// Hack to move GGBApplet into the global namespace
// (since we are getting it from a script)
import {GGBApplet as moduleGGBApplet} from './geotypes/entry.ts'
declare global {
class GGBApplet extends moduleGGBApplet {
}
}