* Remove an HTMLImageElement from the cache * @param key - Cache key to remove * @returns true if the key existed and was removed
(key: string)
| 1037 | * @returns true if the key existed and was removed |
| 1038 | */ |
| 1039 | static imageUncache(key: string): boolean { |
| 1040 | return _imageUncache(this.asEngine(), key); |
| 1041 | } |
| 1042 | |
| 1043 | /** |
| 1044 | * Clear image cache, optionally filtered by prefix |