Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
30 lines
981 B
TypeScript
30 lines
981 B
TypeScript
/**
|
|
* Provides a `waitUntil` implementation which gathers promises to be awaited later (via {@link AwaiterMulti.awaiting}).
|
|
* Unlike a simple `Promise.all`, {@link AwaiterMulti} works recursively --
|
|
* if a promise passed to {@link AwaiterMulti.waitUntil} calls `waitUntil` again,
|
|
* that second promise will also be awaited.
|
|
*/
|
|
export declare class AwaiterMulti {
|
|
private promises;
|
|
private onError;
|
|
constructor({ onError }?: {
|
|
onError?: (error: unknown) => void;
|
|
});
|
|
waitUntil: (promise: Promise<unknown>) => void;
|
|
awaiting(): Promise<void>;
|
|
}
|
|
/**
|
|
* Like {@link AwaiterMulti}, but can only be awaited once.
|
|
* If {@link AwaiterOnce.waitUntil} is called after that, it will throw.
|
|
*/
|
|
export declare class AwaiterOnce {
|
|
private awaiter;
|
|
private done;
|
|
private pending;
|
|
constructor(options?: {
|
|
onError?: (error: unknown) => void;
|
|
});
|
|
waitUntil: (promise: Promise<unknown>) => void;
|
|
awaiting(): Promise<void>;
|
|
}
|