Fix linting errors

This commit is contained in:
theit8514
2021-12-23 23:26:05 -05:00
parent 8f77f720e6
commit fd93c6d338
3 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ import { ScriptUrl } from "../Script/ScriptUrl";
const importCache: { [hash: string]: ScriptUrl[] } = {};
export class ImportCache {
static get(hash: string) {
static get(hash: string): ScriptUrl[] {
return importCache[hash];
}