mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-31 18:18:02 +01:00
20 lines
333 B
Go
20 lines
333 B
Go
|
// Copyright 2024, Command Line Inc.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package tsgenmeta
|
||
|
|
||
|
import "reflect"
|
||
|
|
||
|
type MethodMeta struct {
|
||
|
Desc string
|
||
|
ArgNames []string
|
||
|
ReturnDesc string
|
||
|
}
|
||
|
|
||
|
type TypeUnionMeta struct {
|
||
|
BaseType reflect.Type
|
||
|
Desc string
|
||
|
TypeFieldName string
|
||
|
Types []reflect.Type
|
||
|
}
|