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. limitations under the License.
*/ */
import * as config from './config'; export * as config from './config';
import * as device from './device'; export * as device from './device';
import * as help from './help'; export * as help from './help';
import * as local from './local'; export * as local from './local';
import * as logs from './logs'; export * as logs from './logs';
import * as os from './os'; export * as os from './os';
import * as push from './push'; export * as push from './push';
import * as ssh from './ssh'; export * as ssh from './ssh';
import * as tunnel from './tunnel'; export * as tunnel from './tunnel';
import * as util from './util'; export * as util from './util';
export { device, logs, local, help, os, config, ssh, util, push, tunnel };
export { build } from './build'; export { build } from './build';

View File

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