This commit is contained in:
Jason Kulatunga
2020-08-19 16:04:21 -07:00
commit 8482272d45
336 changed files with 197309 additions and 0 deletions
@@ -0,0 +1,28 @@
import { Layout } from "app/layout/layout.types";
// Theme type
export type Theme = "light" | "dark";
/**
* AppConfig interface. Update this interface to strictly type your config
* object.
*/
export interface AppConfig
{
theme: Theme;
layout: Layout;
}
/**
* Default configuration for the entire application. This object is used by
* "ConfigService" to set the default configuration.
*
* If you need to store global configuration for your app, you can use this
* object to set the defaults. To access, update and reset the config, use
* "ConfigService".
*/
export const appConfig: AppConfig = {
theme : "light",
layout: "material"
};