updated timeStamp type

This commit is contained in:
AtHeartEngineer
2023-08-23 15:05:07 -04:00
parent b250175dee
commit 782d872fbd
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "discreetly-interfaces",
"version": "0.1.36",
"version": "0.1.37",
"description": "Common interfaces and utilities for discreetly",
"author": "AtHeartEngineer",
"homepage": "https://github.com/Discreetly",

View File

@@ -9,7 +9,7 @@ export interface MessageI {
message: string;
proof?: RLNFullProof | string;
epoch?: number | bigint;
timeStamp?: string; // unix epoch time in ms as string
timeStamp?: string | Date | number; // unix epoch time in ms as string
}
export interface SystemMessageI {