mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-24 16:45:05 +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;
|
|
};
|