Sunday, 17 March 2019

SharePoint Lists using pnp



private GetLists():void
{
pnp.sp.web.lists.get().then(function(response){
for(let index:number=0;index<response.length;index++)
{
//Show title
console.log(response[index].Title);
}
});
}

No comments:

Post a Comment