aimpress-chatbot/node_modules/botframework-schema/lib/sharepoint/propertyPaneDropDownOption.d.ts
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +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