5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-05 04:00:32 +08:00
wails/lib/interfaces/appconfig.go
2019-07-12 10:12:15 +10:00

14 lines
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
}