Glen Whitney
58469f793e
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.
8 lines
229 B
TypeScript
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 {
|
|
}
|
|
}
|