MCPcopy Create free account
hub / github.com/candybox2/candybox2.github.io / JQueryGenericPromise

Interface JQueryGenericPromise

libs/jquery.d.ts:86–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84 Allows jQuery Promises to interop with non-jQuery promises
85*/
86interface JQueryGenericPromise<T> {
87 then<U>(onFulfill: (value: T) => U, onReject?: (reason: any) => U): JQueryGenericPromise<U>;
88 then<U>(onFulfill: (value: T) => JQueryGenericPromise<U>, onReject?: (reason: any) => U): JQueryGenericPromise<U>;
89 then<U>(onFulfill: (value: T) => U, onReject?: (reason: any) => JQueryGenericPromise<U>): JQueryGenericPromise<U>;
90 then<U>(onFulfill: (value: T) => JQueryGenericPromise<U>, onReject?: (reason: any) => JQueryGenericPromise<U>): JQueryGenericPromise<U>;
91}
92
93/*
94 Interface for the JQuery promise, part of callbacks

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected