mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
|
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>;
|
||
|
}
|