aimpress-chatbot/node_modules/botframework-schema/lib/sharepoint/propertyPaneGroupField.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

64 lines
No EOL
1.1 KiB
TypeScript

import { PropertyPaneFieldProperties } from './propertyPaneFieldProperties';
/**
* SharePoint property pane group field.
*/
export interface PropertyPaneGroupField {
/**
* The type of the field.
*/
type: FieldType;
/**
* The target property for the field.
*/
targetProperty: string;
/**
* The properties for the field.
*/
properties: PropertyPaneFieldProperties;
/**
* Indicates whether the field should be focused or not.
*/
shouldFocus?: boolean;
}
/**
* SharePoint property pane group field type.
*/
export declare enum FieldType {
/**
* Checkbox field.
*/
CheckBox = 2,
/**
* Text field.
*/
TextField = 3,
/**
* Toggle field.
*/
Toggle = 5,
/**
* Dropdown field.
*/
Dropdown = 6,
/**
* Label field.
*/
Label = 7,
/**
* Slider field.
*/
Slider = 8,
/**
* Choice Group field.
*/
ChoiceGroup = 10,
/**
* Horizontal Rule field.
*/
HorizontalRule = 12,
/**
* Link field.
*/
Link = 13
}
//# sourceMappingURL=propertyPaneGroupField.d.ts.map