From dbbf2bb46e664ccca994d331ba188674cbc399c3 Mon Sep 17 00:00:00 2001 From: Joao Paulo Ramos Date: Wed, 15 Feb 2023 17:14:13 -0300 Subject: [PATCH] fix: Add timestamp to TransformableInfo interface Simples solution to #250. Simply add the timestamp to the interface --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 9331ccb..35f25e0 100644 --- a/index.d.ts +++ b/index.d.ts @@ -8,6 +8,7 @@ import {LEVEL, MESSAGE, SPLAT} from 'triple-beam' export interface TransformableInfo { level: string; message: any; + timestamp: any; [LEVEL]?: string; [MESSAGE]?: any; [SPLAT]?: any;