UNPKG

430 BTypeScriptView Raw
1import { NodePath } from 'ast-types/lib/node-path';
2import Documentation, { ParamTag, ParamType } from '../Documentation';
3export interface TypedParamTag extends ParamTag {
4 type: ParamType;
5}
6/**
7 * Extract slots information form the render function of an object-style VueJs component
8 * @param documentation
9 * @param path
10 */
11export default function slotHandler(documentation: Documentation, path: NodePath): Promise<void>;