MCPcopy Create free account
hub / github.com/0010aor/FlashNotes / finally

Method finally

frontend/src/client/core/CancelablePromise.ts:100–102  ·  view source on GitHub ↗
(onFinally?: (() => void) | null)

Source from the content-addressed store, hash-verified

98 }
99
100 public finally(onFinally?: (() => void) | null): Promise<T> {
101 return this.promise.finally(onFinally)
102 }
103
104 public cancel(): void {
105 if (this._isResolved || this._isRejected || this._isCancelled) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected