Reformat imports

This commit is contained in:
Danny Lin 2021-11-07 18:14:02 -08:00
parent 0eca75199d
commit 146ff625a0
8 changed files with 10 additions and 13 deletions

View file

@ -1,4 +1,4 @@
import {promises as fs} from 'fs'
import { promises as fs } from 'fs'
import * as path from 'path'
import * as chalk from 'chalk'
import * as ora from 'ora'

View file

@ -1,5 +1,3 @@
import * as path from 'path'
import { EXT_PARTITIONS } from '../partitions';
export interface BlobEntry {

View file

@ -1,4 +1,4 @@
import {promises as fs} from 'fs'
import { promises as fs } from 'fs'
import * as path from 'path'
import * as chalk from 'chalk'
import * as ora from 'ora'

View file

@ -1,4 +1,3 @@
import * as path from 'path'
import * as util from 'util'
import { BlobEntry, partPathToSrcPath } from '../blobs/entry'

View file

@ -1,9 +1,9 @@
import {Command, flags} from '@oclif/command'
import {createWriteStream, promises as fs} from 'fs'
import { Command, flags } from '@oclif/command'
import { createWriteStream, promises as fs } from 'fs'
import * as chalk from 'chalk'
import * as cliProgress from 'cli-progress'
import fetch from 'node-fetch'
import {promises as stream} from 'stream'
import { promises as stream } from 'stream'
import * as path from 'path'
const VENDOR_INDEX_URL = 'https://developers.google.com/android/drivers'

View file

@ -1,5 +1,5 @@
import {Command, flags} from '@oclif/command'
import {promises as fs} from 'fs'
import { Command, flags } from '@oclif/command'
import { promises as fs } from 'fs'
import * as chalk from 'chalk'
import { serializeBlueprint } from '../build/soong'

View file

@ -1,5 +1,5 @@
import {Command, flags} from '@oclif/command'
import {promises as fs} from 'fs'
import { Command, flags } from '@oclif/command'
import { promises as fs } from 'fs'
import { listPart } from '../blobs/file_list'
import { ALL_PARTITIONS } from '../partitions'

View file

@ -1 +1 @@
export {run} from '@oclif/command'
export { run } from '@oclif/command'