add a description property to column mapping for custom widgets (#255)

This commit is contained in:
Yohan Boniface
2022-08-26 14:25:34 +02:00
committed by GitHub
parent 1c722014fa
commit 7ae425f869
4 changed files with 18 additions and 1 deletions

View File

@@ -11,6 +11,10 @@ export interface ColumnToMap {
* Title or short description of a column (used as a label in section mapping).
*/
title?: string|null,
/**
* Optional long description of a column (used as a help text in section mapping).
*/
description?: string|null,
/**
* Column type, by default ANY.
*/