请求参数信息(非数组类型)。
| 29 | |
| 30 | /** 请求参数信息(非数组类型)。 */ |
| 31 | interface NonArrayParameter extends ParameterBase { |
| 32 | type: Exclude<ParamType, ParamType.Array> |
| 33 | example?: string |
| 34 | } |
| 35 | |
| 36 | /** 请求参数信息(数组类型)。 */ |
| 37 | interface ArrayParameter extends ParameterBase { |
nothing calls this directly
no outgoing calls
no test coverage detected