mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 15:36:50 -05:00
20 lines
452 B
TypeScript
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>;
|
|
}
|
|
}
|
|
}
|