mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
|
/**
|
||
|
* Provide types for the jsdom-with-backdoors testing environment.
|
||
|
*/
|
||
|
export { };
|
||
|
|
||
|
declare global {
|
||
|
const backdoors: {
|
||
|
newFileList(...files: File[]): FileList;
|
||
|
};
|
||
|
}
|