UNPKG

@teqfw/web

Version:

TeqFW: Lightweight web server with HTTP/2 support for building modern web applications.

24 lines (20 loc) 438 B
/** * Plugin constants (hardcoded configuration) for frontend code. */ export default class TeqFw_Web_Front_Defaults { /** @type {TeqFw_Web_Shared_Defaults} */ SHARED; /** * @param {TeqFw_Web_Shared_Defaults} SHARED */ constructor( { TeqFw_Web_Shared_Defaults$: SHARED, } ) { // DEPS this.SHARED = SHARED; // MAIN Object.freeze(this); } }