Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

sp webpart base.iserializedserverprocesseddata.links

John Nguyen edited this page Apr 22, 2021 · 2 revisions

Home > @microsoft/sp-webpart-base > ISerializedServerProcessedData > links

ISerializedServerProcessedData.links property

A key-value map where keys are string identifiers and values are links.

Signature:

links?: {
        [key: string]: string;
    };

Remarks

SharePoint servers treat the values as links and run services like link fixup on them.

Example:

{
  'myWebURL': 'http://contoso.com'
  'myFileLink': 'https://res.contoso.com/file.docx'
}

Clone this wiki locally