Skip to content

Commit

Permalink
fix the ts imports for build
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed Nov 14, 2019
1 parent 82d5f0f commit 405064d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/reporting/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { config as reportingConfig } from './config';
import { logConfiguration } from './log_configuration';
import { createBrowserDriverFactory } from './server/browsers';
import { getReportingUsageCollector } from './server/usage';
import { ReportingConfigOptions, ReportingPluginSpecOptions, ServerFacade } from './types';
import { ReportingConfigOptions, ReportingPluginSpecOptions, ServerFacade } from './types.d';

const kbToBase64Length = (kb: number) => {
return Math.floor((kb * 1024 * 8) / 6);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import { uniq } from 'lodash';
import { CSV_JOB_TYPE, PDF_JOB_TYPE, PNG_JOB_TYPE } from '../../common/constants';
import { AvailableTotal, FeatureAvailabilityMap, RangeStats, ExportType } from './';
import { AvailableTotal, FeatureAvailabilityMap, RangeStats, ExportType } from './types.d';

function getForFeature(
range: Partial<RangeStats>,
Expand Down
1 change: 0 additions & 1 deletion x-pack/legacy/plugins/reporting/server/usage/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
* you may not use this file except in compliance with the Elastic License.
*/

export * from './types.d';
export { getReportingUsageCollector } from './get_reporting_usage_collector';

0 comments on commit 405064d

Please sign in to comment.