UNPKG

stickyants-sp-util

Version:

A set of utility functions and classes to simplify working with JSOM for SharePoint Online/2013/2016 development.

16 lines (15 loc) 556 B
/** * Get user picture using their email address * @param email the email address of the user */ export declare function getUserPictureLink(email: string): string; /** * Get user delve profile link using their email address * @param email the email address of the user */ export declare function getUserDelveLink(email: string): string; /** * Creates a link to a specific version of the current page given a ui version * @param uiVersion the UIVersion to generate a link to */ export declare function createVersionLink(uiVersion: number): string;