Files
image_table/itablerow.go
2025-12-28 19:02:00 +03:00

9 lines
123 B
Go

package image_table
import "image/color"
type ITableRow interface {
GetCells() []any
GetBackgroundColor() color.RGBA
}