We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c96b0 commit 01f6884Copy full SHA for 01f6884
1 file changed
extensions/ql-vscode/src/language-support/contextual/cached-operation.ts
@@ -1,7 +1,7 @@
1
import { asError } from "../../common/helpers-pure";
2
3
/**
4
- * A cached mapping from args of type [string, S] to a value of type Promise<U>.
+ * A cached mapping from strings to a value of type U.
5
*/
6
export class CachedOperation<S extends unknown[], U> {
7
private readonly operation: (t: string, ...args: S) => Promise<U>;
0 commit comments