fix the rest of warnings
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import {ExternalStore} from "@snort/shared";
|
||||
import { ExternalStore } from "@snort/shared";
|
||||
|
||||
class CommunityLeadersStore extends ExternalStore<Array<string>> {
|
||||
#leaders: Array<string> = [];
|
||||
@ -13,4 +13,4 @@ class CommunityLeadersStore extends ExternalStore<Array<string>> {
|
||||
}
|
||||
}
|
||||
|
||||
export const LeadersStore = new CommunityLeadersStore();
|
||||
export const LeadersStore = new CommunityLeadersStore();
|
||||
|
@ -1,6 +1,6 @@
|
||||
import {ParsedFragment} from "@snort/system";
|
||||
import {LRUCache} from "typescript-lru-cache";
|
||||
import { ParsedFragment } from "@snort/system";
|
||||
import { LRUCache } from "typescript-lru-cache";
|
||||
|
||||
export const TextCache = new LRUCache<string, Array<ParsedFragment>>({
|
||||
maxSize: 1000
|
||||
});
|
||||
maxSize: 1000,
|
||||
});
|
||||
|
Reference in New Issue
Block a user