Files
actual/packages/desktop-client/globals.ts
Julian Dominguez-Schatz 7b71374e79 Move remaining .d.ts files to .ts (#5208)
* Update CRDT protobuf generation to create a .ts file

* Move remaining .d.ts files to .ts

* Fix remaining type errors

* Ignore .d.ts files so we don't accidentally use them in the future

* Add release notes
2025-07-03 14:59:21 -04:00

17 lines
390 B
TypeScript

import '@playwright/test';
// Allow images to be imported
declare module '*.png';
declare global {
function __resetWorld(): void;
// eslint-disable-next-line @typescript-eslint/no-namespace
namespace PlaywrightTest {
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
interface Matchers<R> {
toMatchThemeScreenshots(): Promise<R>;
}
}
}