import { Type } from "./Type" export class NumberType extends Type { toString() { return "number" } }