mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-03 05:03:31 +03:00
6 lines
194 B
JavaScript
6 lines
194 B
JavaScript
|
module.exports.createFSWatcher = function createFSWatcher() {
|
||
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||
|
const { FsWatcher } = require('./index');
|
||
|
return FsWatcher;
|
||
|
};
|