botframework-schema
Version:
Activity schema for the Microsoft Bot Framework.
20 lines • 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