frontend/.pnpm-store/v3/files/a1/c15214fe41f2355666b48ddc214e85e8416a3e793a67ae57fa898f758b374de1bdc21ff5de102412c6f849b6a92f04e4152f64731c298cd555d053a26d4f53

8 lines
206 B
Plaintext

import UpdateNotifier from './update-notifier.js';
export default function updateNotifier(options) {
const updateNotifier = new UpdateNotifier(options);
updateNotifier.check();
return updateNotifier;
}