@sujalchoudhari/solaris-ui
Version:
A UI framework to create HTML pages with just JavaScript.
34 lines (33 loc) • 1.04 kB
TypeScript
/**
* @packageDocumentation
*
* Utils
* -----
*
* ### FileManager
* FileManager is the class that provides the functionality to read and write files.
* It also has features that manipulate directories.
*
* ### Logger
* Logger is the class that provides the functionality to log messages.
* It stores logs in a file.
*
* ### LogLevel
* LogLevel is the enum that provides the log levels.
* A log level of Warning will disable all logs below Warning.
* i.e. No Debug, Info or Time logs will be logged, only Warning, Error.
*
* ### ScriptManager
* ScriptManager is the class that provides the functionality to load scripts.
*
* ### StyleManager
* StyleManager is the class that provides the functionality to load styles.
*
* @license MIT license
*/
import FileManager from "./filemanager";
import Logger from "./logger";
import { LogLevel } from "./logger";
import ScriptManager from "./scriptmanager";
import StyleManager from "./stylemanager";
export { FileManager, Logger, LogLevel, ScriptManager, StyleManager };