@teqfw/core
Version:
Core functionalities for plugin scanning, local configuration management, and command-line utilities for building modern web applications with the Tequila Framework.
14 lines (12 loc) • 401 B
JavaScript
/**
* There are 3 spheres of the sources (see root folders in the `./src/ folder of a teq-plugin).
*
* This enumeration uses uppercase values but folders names are title cased: Back, Front, Shared.
*/
const TeqFw_Core_Shared_Enum_Sphere = {
BACK: 'BACK',
FRONT: 'FRONT',
SHARED: 'SHARED',
};
Object.freeze(TeqFw_Core_Shared_Enum_Sphere);
export default TeqFw_Core_Shared_Enum_Sphere;