UNPKG

@raona/sp

Version:

Raona utilities to work with Sharepoint using pnp/sp

12 lines (11 loc) 418 B
import { SPList } from '../entities/sharepoint/SPList'; export declare class SPLists { private listsPromise; private listDictionary; /** * Creates an instance of splists. * @param sourceOfTruth SPAbstractService or SPWebpart/listview/extension context or string */ constructor(sourceOfTruth: any, webUrlToOperate?: string); getByName(listName: string): Promise<SPList>; }