mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
import type { FetchMockStatic } from 'fetch-mock';
|
|
|
|
declare global {
|
|
declare var iD: typeof import('.');
|
|
declare var d3: typeof import('d3');
|
|
declare var fetchMock: FetchMockStatic;
|
|
declare var before: typeof beforeEach;
|
|
declare var after: typeof afterEach;
|
|
declare var VITEST: true;
|
|
}
|
|
|
|
export {};
|