A work-in-progress SQL parser written in TypeScript
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

number.ts 108B

1234567
  1. export class Number {
  2. public value: number;
  3. constructor(value: number) {
  4. this.value = value;
  5. }
  6. }