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

32 lines
No EOL
917 B
TypeScript

import { PropertyPaneFieldProperties } from './propertyPaneFieldProperties';
import { PropertyPaneLinkPopupWindowProperties } from './propertyPaneLinkPopupWindowProperties';
/**
* SharePoint property pane link field properties.
*/
export interface PropertyPaneLinkProperties extends PropertyPaneFieldProperties {
/**
* The text to display in the link.
*/
text: string;
/**
* The target of the link.
*/
target?: string;
/**
* The URL of the link.
*/
href: string;
/**
* Optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state.
*/
ariaLabel?: string;
/**
* Whether the link is disabled or not.
*/
disabled?: boolean;
/**
* The properties of the popup window.
*/
popupWindowProps?: PropertyPaneLinkPopupWindowProperties;
}
//# sourceMappingURL=propertyPaneLinkProperties.d.ts.map