Color-code basic type arrays orange aswell

This commit is contained in:
Fabio Berger
2018-08-03 13:02:14 +02:00
parent 8c96a31152
commit d136df7679

View File

@@ -12,6 +12,8 @@ import { Signature } from './signature';
import { constants } from '../utils/constants';
import { TypeDefinition } from './type_definition';
const basicJsTypes = ['string', 'number', 'undefined', 'null', 'boolean'];
export interface TypeProps {
type: TypeDef;
docsInfo: DocsInfo;
@@ -73,6 +75,9 @@ export function Type(props: TypeProps): any {
case TypeDocTypes.Array:
typeName = type.elementType.name;
if (_.includes(basicJsTypes, typeName)) {
typeNameColor = colors.orange;
}
break;
case TypeDocTypes.Union: