@pnp/sp
Version:
pnp - provides a fluent api for working with SharePoint REST
13 lines • 366 B
TypeScript
import { IUserCustomActions } from "./types.js";
declare module "../sites/types" {
interface _Site {
readonly userCustomActions: IUserCustomActions;
}
interface ISite {
/**
* Get all custom actions on a site collection
*/
readonly userCustomActions: IUserCustomActions;
}
}
//# sourceMappingURL=site.d.ts.map