@pnp/sp
Version:
pnp - provides a fluent api for working with SharePoint REST
16 lines • 509 B
TypeScript
import { IUserCustomActions } from "./types.js";
declare module "../webs/types" {
interface _Web {
/**
* Gets a newly refreshed collection of the SPWeb's SPUserCustomActionCollection
*/
readonly userCustomActions: IUserCustomActions;
}
interface IWeb {
/**
* Gets a newly refreshed collection of the SPWeb's SPUserCustomActionCollection
*/
readonly userCustomActions: IUserCustomActions;
}
}
//# sourceMappingURL=web.d.ts.map