@azure/storage-blob
Version:
Microsoft Azure Storage SDK for JavaScript - Blob
16 lines • 642 B
TypeScript
import type { AbortSignalLike } from "@azure/abort-controller";
/**
* Options to configure the {@link AvroReadable.read} operation.
*/
export interface AvroReadableReadOptions {
/**
* An implementation of the `AbortSignalLike` interface to signal the request to cancel the operation.
* For example, use the @azure/abort-controller to create an `AbortSignal`.
*/
abortSignal?: AbortSignalLike;
}
export declare abstract class AvroReadable {
abstract get position(): number;
abstract read(size: number, options?: AvroReadableReadOptions): Promise<Uint8Array>;
}
//# sourceMappingURL=AvroReadable.d.ts.map