Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
e11sy committed Nov 20, 2024
1 parent bfee657 commit 1fdb4c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/types/OlCounterType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { IconNumber, IconLowerRoman, IconUpperRoman, IconLowerAlpha, IconUpperAl
export type OlCounterType = 'numeric' | 'upper-roman' | 'lower-roman' | 'upper-alpha' | 'lower-alpha';

/**
* Enum that represents all of the supported styles of the counters for ordered list
* Map that represents all of the supported styles of the counters for ordered list
*/
export const OlCounterTypesMap = new Map<string, string>([
/**
Expand Down Expand Up @@ -32,6 +32,9 @@ export const OlCounterTypesMap = new Map<string, string>([
['Upper Alpha', 'upper-alpha'],
]);

/**
* Map that represents relation between supported counter types and theirs icons to be displayed in toolbox
*/
export const OlCounterIconsMap = new Map<string, string>([
/**
* Value that represents Icon for Numeric counter type
Expand Down

0 comments on commit 1fdb4c4

Please sign in to comment.