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