Skip to content

Commit

Permalink
Fix version tag for bigint codec
Browse files Browse the repository at this point in the history
  • Loading branch information
mixedCase authored and gcanti committed Feb 10, 2020
1 parent 41aa6dd commit e7b23a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ export interface NumberC extends NumberType {}
export const number: NumberC = new NumberType()

/**
* @since 2.0.7
* @since 2.1.0
*/
export class BigIntType extends Type<bigint> {
readonly _tag: 'BigIntType' = 'BigIntType'
Expand All @@ -380,12 +380,12 @@ export class BigIntType extends Type<bigint> {
}

/**
* @since 2.0.7
* @since 2.1.0
*/
export interface BigIntC extends BigIntType {}

/**
* @since 2.0.7
* @since 2.1.0
*/
export const bigint: BigIntC = new BigIntType()

Expand Down

0 comments on commit e7b23a1

Please sign in to comment.