Added rewrite.

This commit is contained in:
SamTV12345 2024-07-22 14:53:37 +02:00
parent fa2d6d15a9
commit f8175a6433
76 changed files with 3150 additions and 2453 deletions

View file

@ -2,9 +2,8 @@
const measured = require('measured-core');
module.exports = measured.createCollection();
export const measuredCollection = measured.createCollection();
// @ts-ignore
module.exports.shutdown = async (hookName, context) => {
module.exports.end();
};
export const shutdown = async (hookName: string, context:any) => {
measuredCollection.end();
};