Simplify some exports

Change-type: patch
This commit is contained in:
Pagan Gazzard 2020-06-22 17:26:13 +01:00 committed by Balena CI
parent e1d51305b0
commit 03eed32f12
2 changed files with 12 additions and 14 deletions

View File

@ -14,18 +14,16 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import * as config from './config';
import * as device from './device';
import * as help from './help';
import * as local from './local';
import * as logs from './logs';
import * as os from './os';
import * as push from './push';
import * as ssh from './ssh';
import * as tunnel from './tunnel';
import * as util from './util';
export { device, logs, local, help, os, config, ssh, util, push, tunnel };
export * as config from './config';
export * as device from './device';
export * as help from './help';
export * as local from './local';
export * as logs from './logs';
export * as os from './os';
export * as push from './push';
export * as ssh from './ssh';
export * as tunnel from './tunnel';
export * as util from './util';
export { build } from './build';

View File

@ -15,9 +15,9 @@ limitations under the License.
*/
import { getBalenaSdk } from '../utils/lazy';
import { awaitForToken, shutdownServer } from './server';
import { awaitForToken } from './server';
export { shutdownServer };
export { shutdownServer } from './server';
/**
* @module auth