Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
fix: Add missing exports
Browse files Browse the repository at this point in the history
  • Loading branch information
lightwalker-eth committed Apr 29, 2024
1 parent 93d7342 commit 49bcb4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/time.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const SECONDS_PER_WEEK = 7n * SECONDS_PER_DAY; // 604,800 seconds
export const DAYS_PER_YEAR = 365.2425; // The average Gregorian calendar year is 365.2425 days in length
export const SECONDS_PER_YEAR = BigInt(Number(SECONDS_PER_DAY) * DAYS_PER_YEAR); // 31,556,952 seconds

interface Timestamp {
export interface Timestamp {

/**
* A Unix timestamp measured in seconds.
Expand All @@ -24,7 +24,7 @@ interface Timestamp {
time: bigint;
}

interface TimestampMs {
export interface TimestampMs {

/**
* A Unix timestamp measured in milliseconds.
Expand Down

0 comments on commit 49bcb4f

Please sign in to comment.