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

47 lines
No EOL
889 B
TypeScript

/**
* SharePoint property pane link popup window properties.
*/
export interface PropertyPaneLinkPopupWindowProperties {
/**
* The width of the popup window.
*/
width: number;
/**
* The height of the popup window.
*/
height: number;
/**
* The title of the popup window.
*/
title: string;
/**
* The position of the popup window.
*/
positionWindowPosition: PopupWindowPosition;
}
/**
* SharePoint property pane link popup window position.
*/
export declare enum PopupWindowPosition {
/**
* Center.
*/
Center = 0,
/**
* Right top.
*/
RightTop = 1,
/**
* Left top.
*/
LeftTop = 2,
/**
* Right bottom.
*/
RightBottom = 3,
/**
* Left bottom.
*/
LeftBottom = 4
}
//# sourceMappingURL=propertyPaneLinkPopupWindowProperties.d.ts.map