UNPKG

css-theme-management

Version:

This package was created to ease the process of implementing multiple themes in an app.

10 lines (9 loc) 272 B
import ITheme from './theme'; import IThemeProperty from './theme_property'; import IThemes from './themes'; export declare namespace Theming { type Theme = ITheme; type ThemeProperty = IThemeProperty; type Themes = IThemes; } export default Theming;