import { RadRadialGauge, RadialBarIndicator, RadialScale, RadialNeedle } from './../'; /** * Represents the RadRadialGauge component. * * * @example * '<RadRadialGauge> * ... * </RadRadialGauge>' */ export class RadRadialGaugeComponent { /** * Gets the NativeScript {@link RadRadialGauge} element. */ radialGauge: RadRadialGauge; /** * Gets the NativeScript {@link RadRadialGauge} element. */ nativeElement: RadRadialGauge; } /** * Directive identifying the {@link RadialScale}. * * @example * '<RadialScale tkRadialGaugeScales> * </RadialScale>' */ export class TKRadialScaleDirective { } /** * Directive identifying the item template of the {@link RadialBarIndicator}. * * @example * '<RadialBarIndicator tkRadialScaleIndicators> * </RadialBarIndicator>' */ export class TKRadialBarIndicatorDirective { } /** * Directive identifying the item template of the {@link RadialNeedle}. * * @example * '<RadialNeedle tkRadialScaleIndicators> * </RadialNeedle>' */ export class TKRadialNeedleDirective { } /** * Directive identifying the 'scales' property of the of the {@link RadRadialGauge}. * * @example * '<RadialScale tkRadialGaugeScales> * </RadialScale>' */ export class TKRadialGaugeScalesDirective { } /** * Directive identifying the 'style' property of the of the {@link RadialScale}. * * @example * '<RadialScale tkRadialScaleStyle> * </RadialScale>' */ export class TKRadialScaleStyleDirective { } /** * Directive identifying the 'indicators' property of the of the {@link RadialScale}. * * @example * '<RadialBarIndicator tkRadialScaleIndicators> * </RadialBarIndicator>' */ export class TKRadialScaleIndicatorsDirective { } /** * Directive identifying the 'indicatorStyle' property of the of the {@link RadialBarIndicator}. * * @example * '<BarIndicatorStyle tkRadialBarIndicatorStyle> * </BarIndicatorStyle>' */ export class TKRadialBarIndicatorStyleDirective { } /** * Directive identifying the 'titleStyle' property of the of the {@link RadRadialGauge}. * * @example * '<TitleStyle tkRadialGaugeTitleStyle> * </TitleStyle>' */ export class TKRadialGaugeTitleStyleDirective { } /** * Directive identifying the 'subtitleStyle' property of the of the {@link RadRadialGauge}. * * @example * '<SubtitleStyle tkRadialGaugeSubtitleStyle> * </SubtitleStyle>' */ export class TKRadialGaugeSubtitleStyleDirective { } /** * Directive identifying the 'needleStyle' property of the of the {@link RadialNeedle}. * * @example * '<NeedleStyle tkRadialNeedleStyle> * </NeedleStyle>' */ export class TKRadialNeedleStyleDirective { } /** * Directives identifying the RadAutoCompleteTextView. */ export const GAUGES_DIRECTIVES; /** * NgModule containing all of the RadGauge directives. */ export class NativeScriptUIGaugesModule { }