mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-05 19:42:15 +02:00
17 lines
397 B
TypeScript
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';
|