Component Descriptor
February 15, 2017 ยท View on GitHub
Interface
interface ComponentDescriptor {
name: string;
title?: string;
description?: string;
}
Properties
-
name
requiredstring
The name of the component.
Should not be confused with thetitleproperty which is the readable name, this property is used to identify the components.
A name should start with a lower case (not forced) and contain only letters. -
title
optionalstring
The readable name of the component.
If a title isn't provided it will be defaulted to thenameproperty with the first letter replaced with its upper case equivalent. -
description
optionalstring
The description for the component.