@progress/kendo-vue-gauges
Version:
19 lines (18 loc) • 945 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ArcGauge } from './ArcGauge';
import { ArcGaugeProps } from './ArcGaugeProps';
import { CircularGauge } from './CircularGauge';
import { CircularGaugeProps } from './CircularGaugeProps';
import { LinearGauge } from './LinearGauge';
import { LinearGaugeProps } from './LinearGaugeProps';
import { RadialGauge } from './RadialGauge';
import { RadialGaugeProps } from './RadialGaugeProps';
export * from './types';
export { ArcGauge, CircularGauge, LinearGauge, RadialGauge };
export type { ArcGaugeProps, CircularGaugeProps, LinearGaugeProps, RadialGaugeProps };