sp-js-provisioning
Version:
SharePoint provisioning with pure JavaScript
20 lines (19 loc) • 372 B
TypeScript
import { IContentType } from './schema';
/**
* Describes the Provisioning Context
*/
export declare class ProvisioningContext {
web: any;
lists: {
[key: string]: string;
};
listViews: {
[key: string]: string;
};
siteFields: {
[key: string]: string;
};
contentTypes: {
[key: string]: IContentType;
};
}