wails/lib/interfaces/appconfig.go
2019-10-08 06:12:08 +11:00

14 lines
No EOL
276 B
Go

package interfaces
// AppConfig is the application config interface
type AppConfig interface {
GetWidth() int
GetHeight() int
GetTitle() string
GetResizable() bool
GetDefaultHTML() string
GetDisableInspector() bool
GetColour() string
GetCSS() string
GetJS() string
}