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