Link Search Menu Expand Document

Hexadecimal overview

Added in v1.0.0


Table of contents


utils

Hexadecimal

Signature

export declare const Hexadecimal: t.BrandC<t.StringC, HexadecimalBrand>

Added in v1.0.0

Hexadecimal (type alias)

Signature

export type Hexadecimal = t.Branded<string, HexadecimalBrand>

Added in v1.0.0

HexadecimalBrand (interface)

Signature

export interface HexadecimalBrand {
  readonly Hexadecimal: unique symbol
}

Added in v1.0.0

hexadecimalDecoder

Signature

export declare const hexadecimalDecoder: <S extends string>() => D.Decoder<
  S,
  t.Branded<S, t.Branded<string, HexadecimalBrand>>
>

Added in v1.1.0