Vladislav Rastoropov ad0109d8f5 deob
2023-03-05 20:00:06 +03:00

15 lines
158 B
JavaScript

const defineFile = (window) => {
class File {
constructor() {
}
get path() {
}
}
window.File = File;
}
module.exports = defineFile;