Export table schema (#459)

* add endpoint
* Add table-schema transformation data
This commit is contained in:
Louis Delbosc
2023-03-16 22:37:24 +01:00
committed by GitHub
parent 8e5128182c
commit c54e910fd6
7 changed files with 250 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
import {NumberFormatOptions} from 'app/common/NumberFormat';
export interface WidgetOptions extends NumberFormatOptions {
textColor?: 'string';
fillColor?: 'string';
alignment?: 'left' | 'center' | 'right';
dateFormat?: string;
timeFormat?: string;
widget?: 'HyperLink';
choices?: Array<string>;
}