ffixed toms bad

This commit is contained in:
Thomas 2022-04-09 20:03:02 -05:00
parent 2213e576ec
commit 8ca78cbe4b
2 changed files with 7 additions and 7 deletions

View File

@ -270,8 +270,8 @@ export class MathStatement {
/** The raw statement input by the user. */
public readonly raw: string,
public x: Number = 0,
public y: Number = 0,
public x: number = 0,
public y: number = 0,
) {}
/** Parse the raw statement to an AST. */

View File

@ -96,8 +96,8 @@ export interface EvaluationResult {
export class RichTextBox {
constructor(
public text: string = '',
public x: Number = 0,
public y: Number = 0,
public x: number = 0,
public y: number = 0,
) {
}