feat(electron): use affine native (#2329)

This commit is contained in:
LongYinan
2023-05-17 14:26:16 +08:00
parent 943e6c59e3
commit 4874adbf3f
25 changed files with 488 additions and 259 deletions
+6
View File
@@ -0,0 +1,6 @@
module.exports.createFSWatcher = function createFSWatcher() {
// require it in the function level so that it won't break the `generate-main-exposed-meta.mjs`
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { FsWatcher } = require('./index');
return FsWatcher;
};