@pnp/sp
Version:
pnp - provides a fluent api for working with SharePoint REST
14 lines • 404 B
TypeScript
import { INavigation } from "./types.js";
declare module "../webs/types" {
interface _Web {
navigation: INavigation;
}
interface IWeb {
/**
* Gets a navigation object that represents navigation on the Web site,
* including the Quick Launch area and the top navigation bar
*/
navigation: INavigation;
}
}
//# sourceMappingURL=web.d.ts.map