apple2js/test/env/jsdom-with-backdoors.d.ts
Will Scullin 1e79d9d59d
Prettier (#203)
* Enabled prettier

* Update lint, fix issues

* Restore some array formatting
2023-11-24 06:45:55 -08:00

11 lines
185 B
TypeScript

/**
* Provide types for the jsdom-with-backdoors testing environment.
*/
export {};
declare global {
const backdoors: {
newFileList(...files: File[]): FileList;
};
}