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
+12
View File
@@ -0,0 +1,12 @@
import { IPageLocalization } from './IPageLocalization';
import { IPurchasableOffer } from './IPurchasableOffer';
export interface ICatalogPage
{
readonly pageId: number;
readonly layoutCode: string;
readonly localization: IPageLocalization;
readonly offers: IPurchasableOffer[];
readonly acceptSeasonCurrencyAsCredits: boolean;
readonly mode: number;
}