@daiso-tech/core
Version:
The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.
14 lines (13 loc) • 313 B
TypeScript
/**
* @module Cache
*/
import { type Redis } from "ioredis";
/**
* @internal
*/
export declare class ClearIterable implements AsyncIterable<void> {
private readonly client;
private readonly pattern;
constructor(client: Redis, pattern: string);
[Symbol.asyncIterator](): AsyncIterator<void>;
}