Interactive Angular 19 demo for @sda/notification-elements-ui with 6 sections: Bell & Feed, Notification Center, Inbox, Comments & Threads, Mention Input, and Full-Featured layout. Includes mock data, dark mode toggle, and real-time event log. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
436 B
TypeScript
13 lines
436 B
TypeScript
import { IDelay } from "./delay.interface";
|
|
import { IBackOffOptions } from "../options";
|
|
export declare abstract class Delay implements IDelay {
|
|
private options;
|
|
protected attempt: number;
|
|
constructor(options: IBackOffOptions);
|
|
apply(): Promise<unknown>;
|
|
setAttemptNumber(attempt: number): void;
|
|
private readonly jitteredDelay;
|
|
private readonly delay;
|
|
protected readonly numOfDelayedAttempts: number;
|
|
}
|