UNPKG

@equinor/fusion-framework-cli

Version:

[![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](./LICENSE)

12 lines 537 B
export { mergeAppConfig } from './merge-app-config.js'; /** * Defines the application configuration by accepting a function that returns the configuration object. * * This utility is typically used to encapsulate and organize application-specific settings * in a structured and type-safe manner. * * @param fn - A function that returns the application configuration object. * @returns The result of invoking the provided configuration function. */ export const defineAppConfig = (fn) => fn; //# sourceMappingURL=app-config.js.map