@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
29 lines • 973 B
JavaScript
/**
* Based on IListInfo from node_modules\@pnp\sp\lists\types.d.ts
*/
/**
* TypeCheckKeysAnyList contains properties that are typically unique to just LISTs
* If the item has any values in ay of these keys, it is very likely a LIST
*
* FOR FETCH SELECTS, USE: MinListSelects or MinIsAListSelects
*/
export const TypeCheckKeysAnyList = [
'EnableAttachments',
];
/**
* TypeCheckKeysAnyLibrary contains properties that are typically unique to just LIBRARIES
* If the item has any values in ay of these keys, it is very likely a LIBRARY
*
* FOR FETCH SELECTS, USE: MinListSelects or MinIsAListSelects
*/
export const TypeCheckKeysAnyLibrary = [
'EnableMinimalDownload',
'DraftVersionVisibility',
'ForceCheckout',
'EnableMinorVersions',
'MajorWithMinorVersionsLimit',
'EnableModeration',
'EnableRequestSignOff',
'ExemptFromBlockDownloadOfNonViewableFiles',
];
//# sourceMappingURL=IAnyListLib.js.map