Showing posts with label Get All Sharepoint Lists using pnp. Show all posts
Showing posts with label Get All Sharepoint Lists using pnp. Show all posts

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);
}
});
}