UNPKG

@pnp/sp

Version:

pnp - provides a fluent api for working with SharePoint REST

16 lines 604 B
declare module "./types" { interface _Items { getAll<T = any>(requestSize?: number, acceptHeader?: string): Promise<T[]>; } /** * Gets all the items in a list, regardless of count. Does not support batching or caching * * @param requestSize Number of items to return in each request (Default: 2000) * @param acceptHeader Allows for setting the value of the Accept header for SP 2013 support */ interface IItems { getAll<T = any>(requestSize?: number, acceptHeader?: string): Promise<T[]>; } } export {}; //# sourceMappingURL=get-all.d.ts.map