Restructure utils

This commit is contained in:
Bill Thornton 2021-09-16 15:38:33 -04:00
parent d5250bd102
commit 527ec22fb8
2 changed files with 8 additions and 2 deletions

View File

@ -3,8 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import { DeviceInfo } from './generated-client';
import { ClientInfo } from './models';
import { ClientInfo, DeviceInfo } from '../models';
/**
* Returns a valid authorization header string.

7
src/utils/index.ts Normal file
View File

@ -0,0 +1,7 @@
/**
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
export * from './authentication';