returns the name and properties of the block
()
| 3 | type Block interface { |
| 4 | // returns the name and properties of the block |
| 5 | Encode() (name string, properties map[string]string) |
| 6 | // creates a new instance of the block with the specified properties |
| 7 | New(properties map[string]string) Block |
| 8 | } |
no outgoing calls
no test coverage detected