UNPKG

@mikezimm/fps-core-v7

Version:

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

22 lines 793 B
/** * 2024-09-06: Migrated from same folder fps-library-v2\src\pnpjs\SourceItems */ import { ISeriesSortObject } from "../../../logic/Arrays/sorting/Interfaces"; import { IPerformanceSettings } from "../Performance/IPerformanceSettings"; import { IFpsSpHttpServiceMIN } from "../SpHttp/Sp/IFpsSpHttpServiceMIN"; export interface IMinSourceFetchProps { refreshId: string; tenant: string; fpsSpService: IFpsSpHttpServiceMIN; fetchAPI?: string; webUrl: string; listTitle: string; absoluteWebUrl?: string; selectThese?: string[]; expandThese?: string[]; restFilter?: string; fetchCount: number; orderBy?: ISeriesSortObject; performanceSettings?: IPerformanceSettings; } //# sourceMappingURL=IMinSourceFetchProps.d.ts.map