vue-docgen-api
Version:
Toolbox to extract information from Vue component files for documentation generation purposes.
10 lines (9 loc) • 314 B
TypeScript
import { ScriptHandler } from '../types';
/**
* Look in the mixin section of a component.
* Parse the file mixins point to.
* Add the necessary info to the current doc object.
* Must be run first as mixins do not override components.
*/
declare const mixinHandler: ScriptHandler;
export default mixinHandler;