component.go 96 B

1234567
  1. package ultraviolet
  2. type Component interface {
  3. Build(Component)
  4. Invalidate() bool
  5. Clean()
  6. }