UNPKG

@pnp/sp

Version:

pnp - provides a fluent api for working with SharePoint REST

9 lines 365 B
import { SPQueryable } from "../spqueryable.js"; import { spPost } from "../operations.js"; import { body } from "@pnp/queryable"; export function getValueForUICultureBinder(propName) { return function (cultureName) { return spPost(SPQueryable(this, `${propName}/getValueForUICulture`), body({ cultureName })); }; } //# sourceMappingURL=funcs.js.map