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