make client public

This commit is contained in:
Ryan Vazquez
2020-10-29 17:36:52 -04:00
parent f454f0eecc
commit 24b8f78d5f
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -17,7 +17,7 @@
import dayjs from 'dayjs';
import regression, { DataPoint } from 'regression';
import { CostInsightsApi } from './api';
import { CostInsightsApi } from '../src/api';
import {
Alert,
ChangeStatistic,
@@ -32,13 +32,13 @@ import {
ProjectGrowthData,
Trendline,
UnlabeledDataflowData,
} from './types';
import { ProjectGrowthAlert, UnlabeledDataflowAlert } from './utils/alerts';
} from '../src/types';
import { ProjectGrowthAlert, UnlabeledDataflowAlert } from '../src/utils/alerts';
import {
DEFAULT_DATE_FORMAT,
exclusiveEndDateOf,
inclusiveStartDateOf,
} from './utils/duration';
} from '../src/utils/duration';
type IntervalFields = {
duration: Duration;
+1 -1
View File
@@ -15,7 +15,7 @@
*/
export { plugin } from './plugin';
export * from './ExampleCostInsightsClient';
export * from './client';
export * from './api';
export * from './components';
export { useCurrency } from './hooks';