mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 20:25:32 -04:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
export const getVisualViewportMock = () => ({
|
|
height: window.innerHeight,
|
|
width: window.innerWidth,
|
|
scale: 1,
|
|
offsetLeft: 0,
|
|
offsetTop: 0,
|
|
addEventListener: vi.fn(),
|
|
removeEventListener: vi.fn(),
|
|
});
|