@pnp/sp
Version:
pnp - provides a fluent api for working with SharePoint REST
13 lines • 343 B
TypeScript
import { IAttachments } from "./types.js";
declare module "../items/types" {
interface _Item {
readonly attachmentFiles: IAttachments;
}
interface IItem {
/**
* Read the attachment files data for an item
*/
readonly attachmentFiles: IAttachments;
}
}
//# sourceMappingURL=item.d.ts.map