@sqala/threedsecure-js
Version:
A vanilla library for implementing 3D Secure authentication flows in payment applications
14 lines • 379 B
TypeScript
export declare class Bucket<T> {
private readonly stack;
private error;
private next;
private readonly bucket;
private readonly abort;
constructor(stack?: Array<T>);
get iterator(): AsyncIterableIterator<T>;
close(): void;
push(item: T): void;
pushError(error: Error): void;
private createBucket;
}
//# sourceMappingURL=bucket.d.ts.map