// (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;
}
