Skip to main content
Version: 3.1

NumericLiteral 数字字面量

结构声明

interface NumericLiteral {
"concept": "NumericLiteral", // 产品概念
"value": string, // 字面量的值
"typeAnnotation": TypeAnnotation, // 类型
}

示例

简单示例

{
"concept": "NumericLiteral",
"value": "123",
"typeAnnotation": null
}