mirror of
https://github.com/github/codeql.git
synced 2026-01-03 17:50:19 +01:00
6 lines
114 B
TypeScript
6 lines
114 B
TypeScript
declare let cache: { [x: string]: Promise<any> };
|
|
|
|
function deleteCache(x: string) {
|
|
delete cache[x]; // OK
|
|
}
|