-
export interface State { - path: string; + entryPath: string; loading: boolean; - page: Page; - hasMorePods: boolean; + pageState: { + page: Page; + hasMorePods: boolean; + visible: boolean; + }[]; currentAccommodationId: string; }
Please register or sign in to comment