UNPKG

vue-styleguidist

Version:
24 lines (22 loc) 600 B
"use strict"; 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; }