UNPKG

590 BTypeScriptView Raw
1declare module "./types" {
2 interface _Items {
3 getAll(requestSize?: number, acceptHeader?: string): Promise<any[]>;
4 }
5 /**
6 * Gets all the items in a list, regardless of count. Does not support batching or caching
7 *
8 * @param requestSize Number of items to return in each request (Default: 2000)
9 * @param acceptHeader Allows for setting the value of the Accept header for SP 2013 support
10 */
11 interface IItems {
12 getAll(requestSize?: number, acceptHeader?: string): Promise<any[]>;
13 }
14}
15export {};
16//# sourceMappingURL=get-all.d.ts.map
\No newline at end of file