Closed kkuehl closed 2 years ago
I check the code:
index.ts:
export { default } from './adb';
export { default as Adb } from './adb';
adb.ts:
export default class Adb {
static util = util;
public static createClient(options: Options = {}): Client {
...
return new Client(opts);
}
}
this part Is ok.
bluebird had been removed, in favor of the Native promises.
I use Typescript, and I did not switch to ESM yet.
so, use Typescript or CommonJS style import.
I have this working now, thank you!
First, thank you so much for modernizing adbkit. Taking a look at the examples:
I must be doing something trivial incorrectly.