UNPKG

stickyants-sp-util

Version:

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

11 lines (10 loc) 378 B
/** * Get the previous major version of an item/page/document * @param version the UI version */ export declare function getPreviousMajorVersion(version: number, draftsNo?: number): number; /** * Get the next major version of an item/page/document * @param version the UI version */ export declare function getNextMajorVersion(version: number, draftsNo?: number): number;