sp-js-provisioning
Version:
SharePoint provisioning with pure JavaScript
23 lines (22 loc) • 726 B
TypeScript
import { IWeb } from '@pnp/sp/presets/all';
import { IProvisioningConfig } from '../provisioningconfig';
import { IPropertyBagEntry } from '../schema';
import { HandlerBase } from './handlerbase';
/**
* Describes the PropertyBagEntries Object Handler
*/
export declare class PropertyBagEntries extends HandlerBase {
/**
* Creates a new instance of the PropertyBagEntries class
*
* @param config - Provisioning config
*/
constructor(config: IProvisioningConfig);
/**
* Provisioning property bag entries
*
* @param web - The web
* @param entries - The property bag entries to provision
*/
ProvisionObjects(web: IWeb, entries: IPropertyBagEntry[]): Promise<void>;
}