20 lines
No EOL
634 B
TypeScript
20 lines
No EOL
634 B
TypeScript
import { PropertyPaneGroupOrConditionalGroup } from './propertyPaneGroupOrConditionalGroup';
|
|
import { PropertyPanePageHeader } from './propertyPanePageHeader';
|
|
/**
|
|
* SharePoint property pane page.
|
|
*/
|
|
export interface PropertyPanePage {
|
|
/**
|
|
* Whether the groups should be displayed as an accordion or not.
|
|
*/
|
|
displayGroupsAsAccordion?: boolean;
|
|
/**
|
|
* The groups to be rendered inside this page.
|
|
*/
|
|
groups: PropertyPaneGroupOrConditionalGroup[];
|
|
/**
|
|
* The header to be rendered inside this page.
|
|
*/
|
|
header?: PropertyPanePageHeader;
|
|
}
|
|
//# sourceMappingURL=propertyPanePage.d.ts.map
|