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

39 lines
No EOL
746 B
TypeScript

/**
* SharePoint property pane drop down option.
*/
export interface PropertyPaneDropDownOption {
/**
* The index of the option.
*/
index?: number;
/**
* The key to uniquely identify the option.
*/
key: string;
/**
* The text to render for this option.
*/
text: string;
/**
* The type of option to render.
*/
type?: DropDownOptionType;
}
/**
* SharePoint property pane drop down option type.
*/
export declare enum DropDownOptionType {
/**
* Render a normal option.
*/
Normal = 0,
/**
* Render a divider.
*/
Divider = 1,
/**
* Render a header.
*/
Header = 2
}
//# sourceMappingURL=propertyPaneDropDownOption.d.ts.map