@grafana/data: don't export ArrowDataFrame (#20855)

This commit is contained in:
Ryan McKinley 2019-12-03 23:17:48 -08:00 committed by GitHub
parent 431bf2b179
commit 3289ee8b77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,4 +4,10 @@ export * from './CircularDataFrame';
export * from './MutableDataFrame';
export * from './processDataFrame';
export * from './dimensions';
export * from './arrow/ArrowDataFrame';
// NOTE: We can not export arrow in the global scope because it will crash phantomjs
// In core, this is loaded async. In plugins you can import using:
//
// import { resultsToDataFrames } from '@grafana/data/dataframe/arrow/ArrowDataFrame'
//
// export * from './arrow/ArrowDataFrame';