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

Commit 8265ab7

Browse files
author
Per Kristian Kummermo
committed
feat(Config): add doc typings
1 parent 66849b2 commit 8265ab7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Config.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ export { IHexToFloatConfig } from "./mappers/HexToFloat";
55
export { IHexToIntConfig } from "./mappers/HexToInt";
66
export { IOffsetConfig } from "./mappers/Offset";
77

8+
/**
9+
* Endianness used as config parameter
10+
*/
811
export enum Endianness {
912
/**
1013
* Config parameter for defining little endianness
@@ -16,8 +19,17 @@ export enum Endianness {
1619
BIG_ENDIAN = "be",
1720
}
1821

22+
/**
23+
* Base64Action used as config parameter
24+
*/
1925
export enum Base64Action {
26+
/**
27+
* Config parameter for defining encoding in Base64
28+
*/
2029
ENCODE = "encode",
30+
/**
31+
* Config parameter for defining decoding in Base64
32+
*/
2133
DECODE = "decode",
2234
}
2335

0 commit comments

Comments
 (0)