fix: revert ef6f01a
This commit is contained in:
Thomas Dupont
2022-05-13 16:00:36 +02:00
committed by Joachim Van Herwegen
parent 236bbc6e5d
commit 5989a1fdc5
4 changed files with 26 additions and 11 deletions

View File

@@ -23,9 +23,9 @@ export class ConvertingRouterRule extends RouterRule {
private readonly typedStores: ConvertingStoreEntry[];
private readonly defaultStore: ResourceStore;
public constructor(typedStore: ConvertingStoreEntry, defaultStore: ResourceStore) {
public constructor(typedStores: ConvertingStoreEntry[], defaultStore: ResourceStore) {
super();
this.typedStores = [ typedStore ];
this.typedStores = typedStores;
this.defaultStore = defaultStore;
}