5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 14:10:58 +08:00
wails/lib/interfaces/appconfig.go
Lea Anthony 7929584ec5
542 use supplied html (#547)
* Fix custom HTML

* Update HTML escaping

* Added more docs around config
2020-11-01 06:31:35 +11:00

15 lines
270 B
Go

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