UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

37 lines 1.31 kB
import { IFpsItemsReturn } from '../process-results/IFpsItemsReturn'; import { IFPSBaseContentType } from "../../../types/fps-returns/common/IFPSBaseContentType"; import { IMinSourceFetchProps } from "../source-props/IMinSourceFetchProps"; import { IAnySourceItem } from "../AnyContent/IAnyContent"; import { IContentGroup } from "../SearchPage/Interfaces/IContentGroup"; export interface IStateSource extends IFpsItemsReturn { refreshId: string; items: IAnySourceItem[]; itemsA?: IAnySourceItem[]; items1?: IAnySourceItem[]; items2?: IAnySourceItem[]; itemsY?: any[]; meta0?: string[]; meta1?: string[]; meta2?: string[]; meta3?: string[]; meta4?: string[]; metaA?: string[]; metaB?: string[]; metaC?: string[]; metaD?: string[]; metaS?: string[]; metaW?: string[]; metaL?: string[]; metaF?: string[]; metaAny1?: any[]; metaAny2?: any[]; metaAny3?: any[]; index: string[]; misc1?: string[]; contentGroups?: IContentGroup[]; fpsContentType: IFPSBaseContentType[]; minSourceFetchProps: IMinSourceFetchProps; } export declare const EmptyStateSource: IStateSource; export declare function createEmptyStateSource(): IStateSource; //# sourceMappingURL=IStateSource.d.ts.map