Files

15 lines
223 B
Go
Raw Permalink Normal View History

package renderer
import "github.com/picoclaw/chart/internal/types"
type Renderer interface {
Render(chart *types.Chart) ([]byte, error)
}
type RenderResult struct {
Text string
ANSI string
SVG string
PNG []byte
}