hojas/node_modules/mathjax-full/js/util/Retries.d.ts

6 lines
208 B
TypeScript
Raw Permalink Normal View History

2026-05-14 10:56:04 +02:00
export interface RetryError extends Error {
retry: Promise<any>;
}
export declare function handleRetriesFor(code: Function): Promise<any>;
export declare function retryAfter(promise: Promise<any>): void;