@module
documentjs.tags.module
Declares the export value for a module.
@module {TYPE} NAME [TITLE]
/**
* @module {{}} lib/componentProps props
* @option {String} name The name of the component.
* @option {String} title The title of the component.
*/
Parameters
-
TYPE
{TYPE-EXPRESSION}OptionalA type expression. This is typically an object specified like:
{{}}or a function like{function}. -
NAME
{String}The name of the type.
-
TITLE
{String}The title of the type used for display purposes.
Use
Use
@moduleto specify what a module exports. Depending on what the module exports you might use as one of the following:A single function export
Multiple export values
A single constructor function export