-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
3,599 additions
and
5,529 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import type { FetchMockStatic } from 'fetch-mock'; | ||
|
||
declare global { | ||
declare var iD: typeof import('.'); | ||
declare var d3: import('d3'); | ||
declare var fetchMock: FetchMockStatic; | ||
declare var before: typeof beforeEach; | ||
declare var after: typeof afterEach; | ||
declare var VITEST: true; | ||
} | ||
|
||
export {}; |
Oops, something went wrong.