Skip to content
Snippets Groups Projects
slider-test.d.ts 631 B
Newer Older
/// <reference types="jquery" />
Glenn Vorhes's avatar
Glenn Vorhes committed
/**
 * Created by gavorhes on 6/22/2016.
 */
import { TipSliders, TipPresetConfig, TipSliderConfig } from '../collections/Sliders';
import ol from 'custom-ol';
Glenn Vorhes's avatar
Glenn Vorhes committed
export interface ITipConfig {
    slidersConfig: Array<TipSliderConfig>;
    presetConfig: Array<TipPresetConfig>;
    tipSegmentLayerMinZoom: number;
    sliders: TipSliders;
    _map: ol.Map;
    $loadingGif: JQuery;
    $presetSelector: JQuery;
    $regionSelector: JQuery;
    $versionSelector: JQuery;
    itsLayerCollection: any;
    tipSegmentLayer: any;
    metamanagerSegments: any;
}
export declare const tipConfig: ITipConfig;