typescriptify

package
v0.1.11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 15, 2023 License: Apache-2.0 Imports: 8 Imported by: 40

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type EnumType added in v0.1.1

type EnumType struct {
	Type reflect.Type
}

type StructType added in v0.1.1

type StructType struct {
	Type         reflect.Type
	FieldOptions map[reflect.Type]TypeOptions
}

StructType stores settings for transforming one Golang struct.

func NewStruct added in v0.1.1

func NewStruct(i interface{}) *StructType

func (*StructType) WithFieldOpts added in v0.1.1

func (st *StructType) WithFieldOpts(i interface{}, opts TypeOptions) *StructType

type TSNamer added in v0.0.10

type TSNamer interface {
	TSName() string
}

type TypeOptions added in v0.1.1

type TypeOptions struct {
	TSType      string
	TSDoc       string
	TSTransform string
}

TypeOptions overrides options set by `ts_*` tags.

type TypeScriptify

type TypeScriptify struct {
	Prefix            string
	Suffix            string
	Indent            string
	CreateFromMethod  bool
	CreateConstructor bool
	BackupDir         string // If empty no backup
	DontExport        bool
	CreateInterface   bool
	// contains filtered or unexported fields
}

func New

func New() *TypeScriptify

func (*TypeScriptify) Add

func (t *TypeScriptify) Add(obj interface{}) *TypeScriptify

func (*TypeScriptify) AddEnum added in v0.0.11

func (t *TypeScriptify) AddEnum(values interface{}) *TypeScriptify

func (*TypeScriptify) AddEnumValues added in v0.0.10

func (t *TypeScriptify) AddEnumValues(typeOf reflect.Type, values interface{}) *TypeScriptify

AddEnumValues is deprecated, use `AddEnum()`

func (*TypeScriptify) AddImport added in v0.1.0

func (t *TypeScriptify) AddImport(i string)

func (*TypeScriptify) AddType

func (t *TypeScriptify) AddType(typeOf reflect.Type) *TypeScriptify

func (*TypeScriptify) Convert

func (t *TypeScriptify) Convert(customCode map[string]string) (string, error)

func (TypeScriptify) ConvertToFile

func (t TypeScriptify) ConvertToFile(fileName string) error

func (*TypeScriptify) ManageType added in v0.1.1

func (t *TypeScriptify) ManageType(fld interface{}, opts TypeOptions) *TypeScriptify

ManageType can define custom options for fields of a specified type.

This can be used instead of setting ts_type and ts_transform for all fields of a certain type.

func (*TypeScriptify) WithBackupDir added in v0.1.0

func (t *TypeScriptify) WithBackupDir(b string) *TypeScriptify

func (*TypeScriptify) WithConstructor added in v0.1.0

func (t *TypeScriptify) WithConstructor(b bool) *TypeScriptify

func (*TypeScriptify) WithCreateFromMethod added in v0.1.0

func (t *TypeScriptify) WithCreateFromMethod(b bool) *TypeScriptify

func (*TypeScriptify) WithIndent added in v0.1.0

func (t *TypeScriptify) WithIndent(i string) *TypeScriptify

func (*TypeScriptify) WithInterface added in v0.1.6

func (t *TypeScriptify) WithInterface(b bool) *TypeScriptify

func (*TypeScriptify) WithPrefix added in v0.1.0

func (t *TypeScriptify) WithPrefix(p string) *TypeScriptify

func (*TypeScriptify) WithSuffix added in v0.1.0

func (t *TypeScriptify) WithSuffix(s string) *TypeScriptify

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL