ya-webadb/libraries/adb/src/index.ts
2022-02-23 18:14:59 +08:00

17 lines
397 B
TypeScript

declare global {
interface ArrayBuffer {
// Disallow assigning `Arraybuffer` to `Uint8Array`
__brand: never;
}
}
export * from './adb';
export * from './auth';
export * from './backend';
export * from './commands';
export * from './crypto';
export * from './features';
export * from './packet';
export * from './socket';
export * from './stream';
export * from './utils';