@pnp/sp
Version:
pnp - provides a fluent api for working with SharePoint REST
18 lines • 450 B
TypeScript
import { IFields } from "./types.js";
declare module "../webs/types" {
interface _Web {
readonly fields: IFields;
readonly availablefields: IFields;
}
interface IWeb {
/**
* This web's collection of fields
*/
readonly fields: IFields;
/**
* This web's collection of available fields
*/
readonly availablefields: IFields;
}
}
//# sourceMappingURL=web.d.ts.map