10 lines
122 B
Go
10 lines
122 B
Go
|
package types
|
||
|
|
||
|
type Element interface {
|
||
|
Full() string
|
||
|
Fulln() string
|
||
|
Line() string
|
||
|
Indent() string
|
||
|
Type() TElement
|
||
|
}
|