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

Commit

Permalink
feat(Config): add doc typings
Browse files Browse the repository at this point in the history
  • Loading branch information
Per Kristian Kummermo committed May 13, 2018
1 parent 66849b2 commit 8265ab7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ export { IHexToFloatConfig } from "./mappers/HexToFloat";
export { IHexToIntConfig } from "./mappers/HexToInt";
export { IOffsetConfig } from "./mappers/Offset";

/**
* Endianness used as config parameter
*/
export enum Endianness {
/**
* Config parameter for defining little endianness
Expand All @@ -16,8 +19,17 @@ export enum Endianness {
BIG_ENDIAN = "be",
}

/**
* Base64Action used as config parameter
*/
export enum Base64Action {
/**
* Config parameter for defining encoding in Base64
*/
ENCODE = "encode",
/**
* Config parameter for defining decoding in Base64
*/
DECODE = "decode",
}

Expand Down

0 comments on commit 8265ab7

Please sign in to comment.