Use import type where possible to explicitly import only type info

Change-type: patch
This commit is contained in:
Pagan Gazzard
2020-02-27 12:38:50 +00:00
committed by Balena CI
parent a26c3912d3
commit 6dce5c1212
50 changed files with 71 additions and 71 deletions

View File

@ -15,6 +15,8 @@
* limitations under the License. * limitations under the License.
*/ */
import type { JsonVersions } from '../lib/actions-oclif/version';
import { run as oclifRun } from '@oclif/dev-cli'; import { run as oclifRun } from '@oclif/dev-cli';
import * as archiver from 'archiver'; import * as archiver from 'archiver';
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
@ -135,7 +137,6 @@ async function buildPkg() {
* existing mocha/chai CLI command testing. * existing mocha/chai CLI command testing.
*/ */
async function testPkg() { async function testPkg() {
type JsonVersions = import('../lib/actions-oclif/version').JsonVersions;
const pkgBalenaPath = path.join( const pkgBalenaPath = path.join(
ROOT, ROOT,
'build-bin', 'build-bin',

View File

@ -15,7 +15,7 @@
* limitations under the License. * limitations under the License.
*/ */
import { OptionDefinition } from 'capitano'; import type { OptionDefinition } from 'capitano';
import * as ent from 'ent'; import * as ent from 'ent';
import * as fs from 'fs'; import * as fs from 'fs';
import * as readline from 'readline'; import * as readline from 'readline';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { Application } from 'balena-sdk'; import type { Application } from 'balena-sdk';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../command'; import Command from '../command';
import * as cf from '../utils/common-flags'; import * as cf from '../utils/common-flags';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { IArg } from '@oclif/parser/lib/args'; import type { IArg } from '@oclif/parser/lib/args';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../../command'; import Command from '../../command';
import * as cf from '../../utils/common-flags'; import * as cf from '../../utils/common-flags';

View File

@ -23,7 +23,7 @@ import * as cf from '../../utils/common-flags';
import { expandForAppName } from '../../utils/helpers'; import { expandForAppName } from '../../utils/helpers';
import { getBalenaSdk, getVisuals } from '../../utils/lazy'; import { getBalenaSdk, getVisuals } from '../../utils/lazy';
import { tryAsInteger } from '../../utils/validation'; import { tryAsInteger } from '../../utils/validation';
import { Application, Device } from 'balena-sdk'; import type { Application, Device } from 'balena-sdk';
interface ExtendedDevice extends Device { interface ExtendedDevice extends Device {
dashboard_url?: string; dashboard_url?: string;

View File

@ -16,8 +16,8 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { IArg } from '@oclif/parser/lib/args'; import type { IArg } from '@oclif/parser/lib/args';
import { Application, Device } from 'balena-sdk'; import type { Application, Device } from 'balena-sdk';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import * as _ from 'lodash'; import * as _ from 'lodash';
import Command from '../../command'; import Command from '../../command';

View File

@ -16,13 +16,13 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { IArg } from '@oclif/parser/lib/args'; import type { IArg } from '@oclif/parser/lib/args';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../../command'; import Command from '../../command';
import * as cf from '../../utils/common-flags'; import * as cf from '../../utils/common-flags';
import { getBalenaSdk } from '../../utils/lazy'; import { getBalenaSdk } from '../../utils/lazy';
import { tryAsInteger } from '../../utils/validation'; import { tryAsInteger } from '../../utils/validation';
import { Device } from 'balena-sdk'; import type { Device } from 'balena-sdk';
import { ExpectedError } from '../../errors'; import { ExpectedError } from '../../errors';
interface FlagsDef { interface FlagsDef {

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { IArg } from '@oclif/parser/lib/args'; import type { IArg } from '@oclif/parser/lib/args';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../../command'; import Command from '../../command';
import { ExpectedError } from '../../errors'; import { ExpectedError } from '../../errors';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { IArg } from '@oclif/parser/lib/args'; import type { IArg } from '@oclif/parser/lib/args';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../../command'; import Command from '../../command';
import * as cf from '../../utils/common-flags'; import * as cf from '../../utils/common-flags';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { IArg } from '@oclif/parser/lib/args'; import type { IArg } from '@oclif/parser/lib/args';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../../command'; import Command from '../../command';
import * as cf from '../../utils/common-flags'; import * as cf from '../../utils/common-flags';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { IArg } from '@oclif/parser/lib/args'; import type { IArg } from '@oclif/parser/lib/args';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../../command'; import Command from '../../command';
import * as cf from '../../utils/common-flags'; import * as cf from '../../utils/common-flags';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { IArg } from '@oclif/parser/lib/args'; import type { IArg } from '@oclif/parser/lib/args';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../../command'; import Command from '../../command';
import * as cf from '../../utils/common-flags'; import * as cf from '../../utils/common-flags';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { IArg } from '@oclif/parser/lib/args'; import type { IArg } from '@oclif/parser/lib/args';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../../command'; import Command from '../../command';
import * as cf from '../../utils/common-flags'; import * as cf from '../../utils/common-flags';

View File

@ -23,7 +23,7 @@ import * as cf from '../../utils/common-flags';
import { expandForAppName } from '../../utils/helpers'; import { expandForAppName } from '../../utils/helpers';
import { getBalenaSdk, getVisuals } from '../../utils/lazy'; import { getBalenaSdk, getVisuals } from '../../utils/lazy';
import { tryAsInteger } from '../../utils/validation'; import { tryAsInteger } from '../../utils/validation';
import { Device, Application } from 'balena-sdk'; import type { Device, Application } from 'balena-sdk';
interface ExtendedDevice extends Device { interface ExtendedDevice extends Device {
dashboard_url?: string; dashboard_url?: string;

View File

@ -15,7 +15,7 @@
* limitations under the License. * limitations under the License.
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import * as SDK from 'balena-sdk'; import type * as SDK from 'balena-sdk';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import * as _ from 'lodash'; import * as _ from 'lodash';
import Command from '../../command'; import Command from '../../command';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import * as BalenaSdk from 'balena-sdk'; import type * as BalenaSdk from 'balena-sdk';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import * as _ from 'lodash'; import * as _ from 'lodash';
import Command from '../../command'; import Command from '../../command';

View File

@ -15,7 +15,7 @@
* limitations under the License. * limitations under the License.
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import * as SDK from 'balena-sdk'; import type * as SDK from 'balena-sdk';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import * as _ from 'lodash'; import * as _ from 'lodash';
import Command from '../command'; import Command from '../command';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import BalenaSdk = require('balena-sdk'); import type * as BalenaSdk from 'balena-sdk';
import Bluebird = require('bluebird'); import Bluebird = require('bluebird');
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -16,7 +16,7 @@
*/ */
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
import { LocalBalenaOsDevice } from 'balena-sync'; import type { LocalBalenaOsDevice } from 'balena-sync';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Command from '../command'; import Command from '../command';
import * as cf from '../utils/common-flags'; import * as cf from '../utils/common-flags';

View File

@ -14,9 +14,9 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { CommandDefinition } from 'capitano'; import type { CommandDefinition } from 'capitano';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import * as SDK from 'etcher-sdk'; import type * as SDK from 'etcher-sdk';
import { getChalk, getVisuals } from '../../utils/lazy'; import { getChalk, getVisuals } from '../../utils/lazy';
async function getDrive(options: { async function getDrive(options: {

View File

@ -14,8 +14,8 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { LogMessage } from 'balena-sdk'; import type { LogMessage } from 'balena-sdk';
import { CommandDefinition } from 'capitano'; import type { CommandDefinition } from 'capitano';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import { getBalenaSdk } from '../utils/lazy'; import { getBalenaSdk } from '../utils/lazy';

View File

@ -14,8 +14,8 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { BalenaSDK } from 'balena-sdk'; import type { BalenaSDK } from 'balena-sdk';
import { CommandDefinition } from 'capitano'; import type { CommandDefinition } from 'capitano';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import { ExpectedError } from '../errors'; import { ExpectedError } from '../errors';

View File

@ -13,8 +13,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import * as BalenaSdk from 'balena-sdk'; import type * as BalenaSdk from 'balena-sdk';
import { CommandDefinition } from 'capitano'; import type { CommandDefinition } from 'capitano';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import { getBalenaSdk } from '../utils/lazy'; import { getBalenaSdk } from '../utils/lazy';

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import { CommandDefinition } from 'capitano'; import type { CommandDefinition } from 'capitano';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { createServer, Server, Socket } from 'net'; import { createServer, Server, Socket } from 'net';

View File

@ -19,7 +19,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { CommandDefinition } from 'capitano'; import type { CommandDefinition } from 'capitano';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import { getChalk, getVisuals } from '../utils/lazy'; import { getChalk, getVisuals } from '../utils/lazy';

View File

@ -78,7 +78,8 @@ function checkNodeVersion() {
} }
} }
export type GlobalTunnelNgConfig = import('global-tunnel-ng').Options; import type { Options as GlobalTunnelNgConfig } from 'global-tunnel-ng';
export type { GlobalTunnelNgConfig };
type ProxyConfig = string | GlobalTunnelNgConfig; type ProxyConfig = string | GlobalTunnelNgConfig;

View File

@ -30,7 +30,7 @@ class CustomMain extends Main {
} }
} }
type AppOptions = import('./preparser').AppOptions; import type { AppOptions } from './preparser';
/** /**
* oclif CLI entrypoint * oclif CLI entrypoint

View File

@ -17,7 +17,7 @@ limitations under the License.
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import * as bodyParser from 'body-parser'; import * as bodyParser from 'body-parser';
import * as express from 'express'; import * as express from 'express';
import { Socket } from 'net'; import type { Socket } from 'net';
import * as path from 'path'; import * as path from 'path';
import * as utils from './utils'; import * as utils from './utils';

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import { Hook } from '@oclif/config'; import type { Hook } from '@oclif/config';
let trackResolve: (result: Promise<any>) => void; let trackResolve: (result: Promise<any>) => void;

View File

@ -15,7 +15,7 @@
* limitations under the License. * limitations under the License.
*/ */
import * as SDK from 'balena-sdk'; import type * as SDK from 'balena-sdk';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -17,7 +17,7 @@
import { flags } from '@oclif/command'; import { flags } from '@oclif/command';
type IBooleanFlag<T> = import('@oclif/parser/lib/flags').IBooleanFlag<T>; import type { IBooleanFlag } from '@oclif/parser/lib/flags';
export const application = flags.string({ export const application = flags.string({
char: 'a', char: 'a',

View File

@ -15,10 +15,8 @@
* limitations under the License. * limitations under the License.
*/ */
import { Composition, ImageDescriptor } from 'resin-compose-parse'; import type { Composition, ImageDescriptor } from 'resin-compose-parse';
import { Pack } from 'tar-stream'; import type { Pack } from 'tar-stream';
import Logger = require('./logger');
interface Image { interface Image {
context: string; context: string;

View File

@ -17,7 +17,7 @@
import { BalenaSDK } from 'balena-sdk'; import { BalenaSDK } from 'balena-sdk';
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Dockerode = require('dockerode'); import type * as Dockerode from 'dockerode';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { fs } from 'mz'; import { fs } from 'mz';
import * as path from 'path'; import * as path from 'path';

View File

@ -13,7 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import BalenaSdk = require('balena-sdk'); import type * as BalenaSdk from 'balena-sdk';
import * as semver from 'balena-semver'; import * as semver from 'balena-semver';
import Bluebird = require('bluebird'); import Bluebird = require('bluebird');
import { getBalenaSdk } from './lazy'; import { getBalenaSdk } from './lazy';

View File

@ -16,10 +16,10 @@
*/ */
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { NodeJSSocketWithFileDescriptor } from 'net-keepalive'; import type { NodeJSSocketWithFileDescriptor } from 'net-keepalive';
import * as os from 'os'; import * as os from 'os';
import * as request from 'request'; import * as request from 'request';
import * as Stream from 'stream'; import type * as Stream from 'stream';
import Logger = require('../logger'); import Logger = require('../logger');
import * as ApiErrors from './errors'; import * as ApiErrors from './errors';

View File

@ -26,7 +26,7 @@ import {
LocalImage, LocalImage,
RegistrySecrets, RegistrySecrets,
} from 'resin-multibuild'; } from 'resin-multibuild';
import { Readable } from 'stream'; import type { Readable } from 'stream';
import { BALENA_ENGINE_TMP_PATH } from '../../config'; import { BALENA_ENGINE_TMP_PATH } from '../../config';
import { import {

View File

@ -1,17 +1,18 @@
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import * as chokidar from 'chokidar'; import * as chokidar from 'chokidar';
import * as Dockerode from 'dockerode'; import type * as Dockerode from 'dockerode';
import Livepush, { ContainerNotRunningError } from 'livepush'; import Livepush, { ContainerNotRunningError } from 'livepush';
import * as _ from 'lodash'; import * as _ from 'lodash';
import * as path from 'path'; import * as path from 'path';
import { Composition } from 'resin-compose-parse'; import type { Composition } from 'resin-compose-parse';
import { BuildTask } from 'resin-multibuild'; import type { BuildTask } from 'resin-multibuild';
import { instanceOf } from '../../errors'; import { instanceOf } from '../../errors';
import Logger = require('../logger'); import Logger = require('../logger');
import { Dockerfile } from 'livepush'; import { Dockerfile } from 'livepush';
import DeviceAPI, { DeviceInfo, Status } from './api'; import type DeviceAPI from './api';
import type { DeviceInfo, Status } from './api';
import { import {
DeviceDeployOptions, DeviceDeployOptions,
generateTargetState, generateTargetState,

View File

@ -1,7 +1,7 @@
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import ColorHash = require('color-hash'); import ColorHash = require('color-hash');
import * as _ from 'lodash'; import * as _ from 'lodash';
import { Readable } from 'stream'; import type { Readable } from 'stream';
import { getChalk } from '../lazy'; import { getChalk } from '../lazy';
import Logger = require('../logger'); import Logger = require('../logger');

View File

@ -13,7 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { ContainerInfo } from 'dockerode'; import type { ContainerInfo } from 'dockerode';
export interface DeviceSSHOpts { export interface DeviceSSHOpts {
address: string; address: string;

View File

@ -15,8 +15,7 @@
* limitations under the License. * limitations under the License.
*/ */
import Dockerode = require('dockerode'); import type * as dockerode from 'dockerode';
import * as dockerode from 'dockerode';
export * from './docker-js'; export * from './docker-js';
@ -24,7 +23,7 @@ interface BalenaEngineVersion extends dockerode.DockerVersion {
Engine?: string; Engine?: string;
} }
export async function isBalenaEngine(docker: Dockerode): Promise<boolean> { export async function isBalenaEngine(docker: dockerode): Promise<boolean> {
// dockerVersion.Engine should equal 'balena-engine' for the current/latest // dockerVersion.Engine should equal 'balena-engine' for the current/latest
// version of balenaEngine, but it was at one point (mis)spelt 'balaena': // version of balenaEngine, but it was at one point (mis)spelt 'balaena':
// https://github.com/balena-os/balena-engine/pull/32/files // https://github.com/balena-os/balena-engine/pull/32/files

View File

@ -20,7 +20,7 @@ import { stripIndent } from 'common-tags';
import { ExpectedError } from '../errors'; import { ExpectedError } from '../errors';
type IBooleanFlag<T> = import('@oclif/parser/lib/flags').IBooleanFlag<T>; import type { IBooleanFlag } from '@oclif/parser/lib/flags';
export const booleanConfig: IBooleanFlag<boolean> = flags.boolean({ export const booleanConfig: IBooleanFlag<boolean> = flags.boolean({
char: 'c', char: 'c',

View File

@ -14,15 +14,15 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { InitializeEmitter, OperationState } from 'balena-device-init'; import type { InitializeEmitter, OperationState } from 'balena-device-init';
import * as BalenaSdk from 'balena-sdk'; import type * as BalenaSdk from 'balena-sdk';
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import { spawn, SpawnOptions } from 'child_process'; import { spawn, SpawnOptions } from 'child_process';
import * as _ from 'lodash'; import * as _ from 'lodash';
import * as os from 'os'; import * as os from 'os';
import * as ShellEscape from 'shell-escape'; import * as ShellEscape from 'shell-escape';
import { Device, PineOptionsFor } from 'balena-sdk'; import type { Device, PineOptionsFor } from 'balena-sdk';
import { ExpectedError } from '../errors'; import { ExpectedError } from '../errors';
import { getBalenaSdk, getChalk, getVisuals } from './lazy'; import { getBalenaSdk, getChalk, getVisuals } from './lazy';

View File

@ -16,9 +16,9 @@ limitations under the License.
// tslint:disable:import-blacklist - the import blacklist is to enforce lazy loading so exempt this file // tslint:disable:import-blacklist - the import blacklist is to enforce lazy loading so exempt this file
import * as BalenaSdk from 'balena-sdk'; import type * as BalenaSdk from 'balena-sdk';
import { Chalk } from 'chalk'; import type { Chalk } from 'chalk';
import * as visuals from 'resin-cli-visuals'; import type * as visuals from 'resin-cli-visuals';
// Equivalent of _.once but avoiding the need to import lodash for lazy deps // Equivalent of _.once but avoiding the need to import lodash for lazy deps
const once = <T>(fn: () => T) => { const once = <T>(fn: () => T) => {

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { BalenaSDK } from 'balena-sdk'; import type { BalenaSDK } from 'balena-sdk';
import _ = require('lodash'); import _ = require('lodash');
import { ExpectedError } from '../errors'; import { ExpectedError } from '../errors';

View File

@ -15,7 +15,7 @@
* limitations under the License. * limitations under the License.
*/ */
import * as Config from '@oclif/config'; import type * as Config from '@oclif/config';
/** /**
* This class is a partial copy-and-paste of * This class is a partial copy-and-paste of

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { BalenaApplicationNotFound } from 'balena-errors'; import { BalenaApplicationNotFound } from 'balena-errors';
import * as BalenaSdk from 'balena-sdk'; import type * as BalenaSdk from 'balena-sdk';
import Bluebird = require('bluebird'); import Bluebird = require('bluebird');
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import _ = require('lodash'); import _ = require('lodash');

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import * as BalenaSdk from 'balena-sdk'; import type * as BalenaSdk from 'balena-sdk';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import { ExpectedError, printErrorMessage } from '../errors'; import { ExpectedError, printErrorMessage } from '../errors';

View File

@ -17,7 +17,7 @@
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import { stripIndent } from 'common-tags'; import { stripIndent } from 'common-tags';
import Dockerode = require('dockerode'); import type * as Dockerode from 'dockerode';
import { getBalenaSdk } from './lazy'; import { getBalenaSdk } from './lazy';
import Logger = require('./logger'); import Logger = require('./logger');

View File

@ -13,15 +13,15 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { BalenaSDK } from 'balena-sdk'; import type { BalenaSDK } from 'balena-sdk';
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import * as JSONStream from 'JSONStream'; import * as JSONStream from 'JSONStream';
import * as readline from 'readline'; import * as readline from 'readline';
import * as request from 'request'; import * as request from 'request';
import { RegistrySecrets } from 'resin-multibuild'; import { RegistrySecrets } from 'resin-multibuild';
import * as Stream from 'stream'; import type * as Stream from 'stream';
import streamToPromise = require('stream-to-promise'); import streamToPromise = require('stream-to-promise');
import { Pack } from 'tar-stream'; import type { Pack } from 'tar-stream';
import { ExpectedError } from '../errors'; import { ExpectedError } from '../errors';
import { exitWithExpectedError } from '../errors'; import { exitWithExpectedError } from '../errors';

View File

@ -13,7 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { BalenaSDK } from 'balena-sdk'; import type { BalenaSDK } from 'balena-sdk';
import * as Bluebird from 'bluebird'; import * as Bluebird from 'bluebird';
import { Socket } from 'net'; import { Socket } from 'net';
import { TypedError } from 'typed-error'; import { TypedError } from 'typed-error';