aimpress-chatbot/node_modules/botframework-schema/lib/sharepoint/propertyPaneChoiceGroupOption.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

40 lines
No EOL
1.2 KiB
TypeScript

import { PropertyPaneChoiceGroupIconProperties } from './propertyPaneChoiceGroupIconProperties';
import { PropertyPaneChoiceGroupImageSize } from './propertyPaneChoiceGroupImageSize';
/**
* SharePoint property pane choice group option.
*/
export interface PropertyPaneChoiceGroupOption {
/**
* Optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state.
*/
ariaLabel?: string;
/**
* Indicates whether the choice group option is disabled or not.
*/
disabled?: boolean;
/**
* Indicates whether the choice group option is checked or not.
*/
checked?: boolean;
/**
* The icon properties to use for the choice group option.
*/
iconProps?: PropertyPaneChoiceGroupIconProperties;
/**
* The image size to use for the choice group option.
*/
imageSize?: PropertyPaneChoiceGroupImageSize;
/**
* The image source to use for the choice group option.
*/
imageSrc?: string;
/**
* The key to uniquely identify the choice group option.
*/
key: string;
/**
* The text to display next for this choice group option.
*/
text: string;
}
//# sourceMappingURL=propertyPaneChoiceGroupOption.d.ts.map