Glen Whitney
6bcec494e2
Enabling type checking involves a full rearrangement of the build process, as well as supplying types for some of the packages. The X_ITE types are still a work in progress, but they are enough for this initial state of the project to compile and run. Resolves #14.
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 './geogebra/entry.ts'
|
|
declare global {
|
|
class GGBApplet extends moduleGGBApplet {
|
|
}
|
|
}
|