chore: disable importsNotUsedAsValues

This commit is contained in:
Simon Chan 2022-03-15 16:10:18 +08:00
parent bc9bc49e8c
commit 730aac8da2
No known key found for this signature in database
GPG key ID: 8F75717685A974FB
17 changed files with 22 additions and 23 deletions

View file

@ -2,7 +2,7 @@ import { PromiseResolver } from '@yume-chan/async';
import type { Disposable } from '@yume-chan/event';
import type { ValueOrPromise } from '@yume-chan/struct';
import { calculatePublicKey, calculatePublicKeyLength, sign } from './crypto';
import { AdbCommand, AdbPacket, AdbPacketCore } from './packet';
import { AdbCommand, AdbPacket, type AdbPacketCore } from './packet';
import { calculateBase64EncodedLength, encodeBase64 } from './utils';
export type AdbKeyIterable = Iterable<Uint8Array> | AsyncIterable<Uint8Array>;