botbook/node_modules/@azure/msal-browser/dist/request/PopupWindowAttributes.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

16 lines
No EOL
389 B
TypeScript

/**
* Popup configurations for setting dimensions and position of popup window
*/
export type PopupWindowAttributes = {
popupSize?: PopupSize;
popupPosition?: PopupPosition;
};
export type PopupSize = {
height: number;
width: number;
};
export type PopupPosition = {
top: number;
left: number;
};
//# sourceMappingURL=PopupWindowAttributes.d.ts.map