init: Fork from Original V2 Renderer

This commit is contained in:
duckietm
2024-04-03 09:16:49 +02:00
commit 110c3ad393
1425 changed files with 67522 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { ICatalogNode } from './ICatalogNode';
import { IPurchasableOffer } from './IPurchasableOffer';
export class SearchResult
{
constructor(
public readonly searchValue: string,
public readonly offers: IPurchasableOffer[],
public readonly filteredNodes: ICatalogNode[])
{}
}