@databrainhq/plugin 0.10.151 → 0.10.177

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ /**
2
+ * @name pivotDataTransform - converts array of objects to pivot csv data
3
+ * @param chartOptions - includes chart properties, data - array of objects including data for the chart
4
+ * @returns array containing pivoted data
5
+ */
6
+ import { ChartSettingsType } from '@/types';
7
+ export declare const pivotDataTransform: (chartOptions: ChartSettingsType | undefined, data: Record<string, string>[]) => any[];
@@ -0,0 +1 @@
1
+ export * from './webcomponents'