Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
static register() {
const registerConfigElement = (tag: string, native: new () => any, setsParentProp: string = null, propconfig: NativeElementPropConfig = {}) =>
registerNativeConfigElement(tag, () => native, setsParentProp, propconfig)
registerElement('radRadialGauge', () => new NativeViewElementNode('radRadialGauge', RadRadialGauge, null, { "scales": NativeElementPropType.ObservableArray } ));
registerConfigElement('radialScale', RadialScale, "scales", { "indicators": NativeElementPropType.ObservableArray })
registerConfigElement('radialNeedle', RadialNeedle, "indicators")
registerConfigElement('radialBarIndicator', RadialBarIndicator, "indicators")
registerConfigElement('scaleStyle', ScaleStyle, "scaleStyle")
registerConfigElement('barIndicatorStyle', BarIndicatorStyle, "indicatorStyle")
}
}