multini/types/element.go
2020-04-26 02:42:14 +03:00

10 lines
122 B
Go

package types
type Element interface {
Full() string
Fulln() string
Line() string
Indent() string
Type() TElement
}