Skip to main content
Version: 3.0

Constant 常量

结构声明

interface Constant {
"concept": "Constant", // 产品概念
"name": string, // 常量名称
"description": string, // 常量描述
"typeAnnotation": TypeAnnotation, // 类型
"defaultValue": string, // 默认值
}

示例

简单示例

{
"concept": "Constant",
"name": "param1",
"description": "",
"typeAnnotation": null,
"defaultValue": null
}