UNPKG

@gooddata/gooddata-js

Version:
19 lines (15 loc) 416 B
// (C) 2007-2018 GoodData Corporation import { IColorPaletteItem, IFeatureFlags } from "./interfaces"; export interface IStyleSettingsResponse { styleSettings: IStyleSettings; } export interface IStyleSettings { chartPalette: IColorPaletteItem[]; chartFont?: IChartFont; } export interface IChartFont { family: string; } export interface IFeatureFlagsResponse { featureFlags: IFeatureFlags; }