import Core from './core/chart.core'; import { OPTIONS_TYPE, CHART_TYPE } from './global/global.enums'; declare global { var $SC: SmartChartsNXT; interface Window { $SC: SmartChartsNXT; msCrypto: any; } } /** * index.ts * @createdOn: 10-Jul-2017 * @author: SmartChartsNXT * @description: Initialize the chart library. * Using namespace SmartChartsNXT * @module: SmartChartsNXT */ declare class SmartChartsNXT extends Core { version: string; CHART_TYPE: typeof CHART_TYPE; ENUMS: OPTIONS_TYPE; GLOBAL: { theme: { fontFamily: string; fontColorLight: string; fontColorMedium: string; fontColorDark: string; fontColorHighlight: string; fontSizeSmall: number; fontSizeMedium: number; fontSizeLarge: number; bgColorLight: string; bgColorMedium: string; bgColorDark: string; }; formatting: { parseDateFormat: string; displayDateFormat: string; }; }; COLOR_STRINGS: Readonly; COLOR_MODEL: string[]; RAINBOW_COLOR_MODEL: string[]; HELPER: { showColorModel: () => void; }; EASING: Readonly; IESupport: any; constructor(); } declare const _default: SmartChartsNXT; export default _default;