aimpress-chatbot/node_modules/botframework-schema/lib/sharepoint/propertyPaneGroup.d.ts
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +01:00

24 lines
No EOL
700 B
TypeScript

import { PropertyPaneGroupOrConditionalGroup } from './propertyPaneGroupOrConditionalGroup';
import { PropertyPaneGroupField } from './propertyPaneGroupField';
/**
* SharePoint property pane group.
*/
export interface PropertyPaneGroup extends PropertyPaneGroupOrConditionalGroup {
/**
* The fields to be rendered inside this group.
*/
groupFields: PropertyPaneGroupField[];
/**
* The name of the group.
*/
groupName?: string;
/**
* Whether the group is collapsed or not.
*/
isCollapsed?: boolean;
/**
* Whether the group name is hidden or not.
*/
isGroupNameHidden?: boolean;
}
//# sourceMappingURL=propertyPaneGroup.d.ts.map