vue-styleguidist
Version:
Vue components style guide generator
24 lines (22 loc) • 600 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.defineConfig = defineConfig;
exports.defineEnhanceApp = defineEnhanceApp;
/**
* Helper function to create type safe configs in JavaScript
* @param config passed config
* @returns the config passed without any changes
*/
function defineConfig(config) {
return config;
}
/**
* Helper function for typing the contents of the `enhancePreviewApp` function
* @param enhance the enhancer function
* @returns the function passed without any changes
*/
function defineEnhanceApp(enhance) {
return enhance;
}