Describe the bug
Node.js version: v20.5.0
OS version: ubuntu 22.04
Description: There is no options for hideMeta when create new Graceful class????
Actual behavior
Object literal may only specify known properties, and 'hideMeta' does not exist in type 'GracefulOptions'.ts(2353)
Expected behavior
should be able to define hideMeta options in constructor
Code to reproduce
const graceful = new Graceful({
logger: logger,
servers: [server],
customHandlers: [
async () => {
await mongoManager.disconnect();
cronjobManager.stop();
// this close all socket conneted to server and close server
socketServer.close();
},
],
hideMeta : false,
});
Checklist
Describe the bug
Node.js version: v20.5.0
OS version: ubuntu 22.04
Description: There is no options for hideMeta when create new Graceful class????
Actual behavior
Object literal may only specify known properties, and 'hideMeta' does not exist in type 'GracefulOptions'.ts(2353)
Expected behavior
should be able to define hideMeta options in constructor
Code to reproduce
Checklist