spws
Version:
SharePoint Web Services Wrapper
39 lines (38 loc) • 975 B
TypeScript
type WebPartProperties = {
webPartXml?: string;
xmlns_xsi?: string;
xmlns_xsd?: string;
xmlns?: string;
ID?: string;
Title?: string;
FrameType?: string;
Description?: string;
IsIncluded?: boolean;
ZoneID?: string;
PartOrder?: number;
FrameState?: string;
Height?: string;
Width?: string;
AllowRemove?: boolean;
AllowZoneChange?: boolean;
AllowMinimize?: boolean;
AllowConnect?: boolean;
AllowEdit?: boolean;
AllowHide?: boolean;
IsVisible?: boolean;
DetailLink?: string;
HelpLink?: string;
HelpMode: string;
Dir?: string;
PartImageSmall?: string;
MissingAssembly?: string;
PartImageLarge?: string;
IsIncludedFilter?: string;
ExportControlledProperties?: boolean;
ConnectionID?: string;
ID_?: string;
Assembly?: string;
TypeName?: string;
HeaderTitle?: string;
};
export default WebPartProperties;