add explicit export for public utils

This commit is contained in:
Ryan Vazquez
2020-10-28 12:58:11 -04:00
parent ec884c9d28
commit 51032212fe
2 changed files with 21 additions and 2 deletions
+1 -2
View File
@@ -19,5 +19,4 @@ export * from './api';
export * from './components';
export { useCurrency } from './hooks';
export * from './types';
export { Duration } from './utils/duration';
export * from './utils/tests';
export * from './utils/public';
@@ -0,0 +1,20 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from '../tests';
export { Duration } from '../duration';
export { CurrencyType } from '../currency';
export { IconType } from '../icon';