@pnp/sp
Version:
pnp - provides a fluent api for working with SharePoint REST
14 lines • 367 B
TypeScript
import { ISubscriptions } from "./types.js";
declare module "../lists/types" {
interface _List {
readonly subscriptions: ISubscriptions;
}
interface IList {
/**
* Gets the collection of webhooks created for this list
*
*/
readonly subscriptions: ISubscriptions;
}
}
//# sourceMappingURL=list.d.ts.map