UNPKG

vue-docgen-api

Version:

Toolbox to extract information from Vue component files for documentation generation purposes.

7 lines (6 loc) 254 B
import { NodePath } from 'ast-types/lib/node-path'; /** * true if the left part of the expression of the NodePath is of form `exports.foo = ...;` or * `modules.exports = ...;`. */ export default function isExportedAssignment(path: NodePath): boolean;