Layer 220
BaseTheme
Abstract type representing one of 5 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.BaseTheme interface.
Use any of the following constructors:
Gogram Example
// BaseTheme is an interface type // You can use any of the following constructors: var _ tg.BaseTheme = &tg.BaseThemeClassic{} var _ tg.BaseTheme = &tg.BaseThemeTinted{} var _ tg.BaseTheme = &tg.BaseThemeArctic{} var _ tg.BaseTheme = &tg.BaseThemeDay{} var _ tg.BaseTheme = &tg.BaseThemeNight{}