semblance/node_modules/@azure/msal-browser/dist/custom-auth-path/request/PopupWindowAttributes.d.ts
2025-12-19 19:26:16 +00:00

16 lines
No EOL
389 B
TypeScript
Executable file

/**
* 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