mcfly/packages/core/define-config.js
2023-10-29 18:21:43 +01:00

14 lines
259 B
JavaScript

/**
* @typedef {{
* components: 'js'
* }} McFlyConfig
*/
/**
* Define the configuration for the McFly project
* @param {McFlyConfig} config
* @returns {function(): McFlyConfig}
*/
export function defineMcFlyConfig(config) {
return () => config;
}