@pnp/sp
Version:
pnp - provides a fluent api for working with SharePoint REST
8 lines • 330 B
JavaScript
import { SPQueryable, spPost } from "../spqueryable.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