mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
7 lines
292 B
JavaScript
7 lines
292 B
JavaScript
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;
|
|
};
|