Basic
This describes the return value of react-docgen either from the parse()
method
or from the CLI output.
For the current TypeScript types you can look at github
Documentation
interface Documentation {
childContext?: Record<string, PropDescriptor>;
composes?: string[];
context?: Record<string, PropDescriptor>;
description?: string;
displayName?: string;
methods?: MethodDescriptor[];
props?: Record<string, PropDescriptor>;
}
childContext
composes
Type: string[] | undefined
If the props of the React component are composed of props which react-docgen was unable to resolve, the name of types will be listed here.
🚧
Create examples
context
description
Type: string | undefined
If the componentDocblockHandler
is
active this property will be set to the description of the React component.
displayName
Type: string | undefined
If the displayNameHandler
is active this
property will be set to the name of the React component.