UNPKG

@gooddata/react-components

Version:

GoodData.UI - A powerful JavaScript library for building analytical applications

9 lines (7 loc) 370 B
// (C) 2007-2018 GoodData Corporation export const OverTimeComparisonTypes = { SAME_PERIOD_PREVIOUS_YEAR: "same_period_previous_year" as "same_period_previous_year", PREVIOUS_PERIOD: "previous_period" as "previous_period", NOTHING: "nothing" as "nothing", }; export type OverTimeComparisonType = "same_period_previous_year" | "previous_period" | "nothing";