Skip to content

Commit

Permalink
improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
e11sy committed Nov 20, 2024
1 parent f4c47db commit bfee657
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/types/OlCounterType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,28 @@ export const OlCounterTypesMap = new Map<string, string>([
]);

export const OlCounterIconsMap = new Map<string, string>([
/**
* Value that represents Icon for Numeric counter type
*/
['Numeric', IconNumber],

/**
* Value that represents Icon for Lower Roman counter type
*/
['Lower Roman', IconLowerRoman],

/**
* Value that represents Icon for Upper Roman counter type
*/
['Upper Roman', IconUpperRoman],

/**
* Value that represents Icon for Lower Alpha counter type
*/
['Lower Alpha', IconLowerAlpha],

/**
* Value that represents Icon for Upper Alpha counter type
*/
['Upper Alpha', IconUpperAlpha],
]);

0 comments on commit bfee657

Please sign in to comment.