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