Files
actual/packages/desktop-client/globals.d.ts
2025-04-06 14:47:49 +01:00

20 lines
452 B
TypeScript

import { type CSSObject } from '@emotion/css/dist/declarations/src/create-instance';
// Allow images to be imported
declare module '*.png';
declare module 'react' {
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
interface CSSProperties extends CSSObject {}
}
declare global {
function __resetWorld(): void;
namespace PlaywrightTest {
interface Matchers<R> {
toMatchThemeScreenshots(): Promise<R>;
}
}
}