Skip to content

Commit 3d607a1

Browse files
committed
fix visibility
1 parent 2bfc980 commit 3d607a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cubejs-client-core/src/ResultSet.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default class ResultSet<T extends Record<string, any>> {
8585

8686
backwardCompatibleData: Record<string, any>[][];
8787

88-
private static measureFromAxis(axisValues: string[]): string {
88+
public static measureFromAxis(axisValues: string[]): string {
8989
return axisValues[axisValues.length - 1];
9090
}
9191

@@ -365,7 +365,7 @@ export default class ResultSet<T extends Record<string, any>> {
365365
return axisValues.map(formatValue).join(delimiter);
366366
}
367367

368-
private static getNormalizedPivotConfig(query: PivotQuery, pivotConfig?: Partial<PivotConfig>): PivotConfig {
368+
public static getNormalizedPivotConfig(query: PivotQuery, pivotConfig?: Partial<PivotConfig>): PivotConfig {
369369
const defaultPivotConfig: PivotConfig = {
370370
x: [],
371371
y: [],

0 commit comments

Comments
 (0)