|
@@ -1,9 +1,9 @@
|
|
|
import { MakeEnum } from '@gradecam/tsenum';
|
|
|
|
|
|
export const IdentifierNamesGenerator: Readonly<{
|
|
|
- MangledIdentifierNamesGenerator: string;
|
|
|
- DictionaryIdentifierNamesGenerator: string;
|
|
|
- HexadecimalIdentifierNamesGenerator: string;
|
|
|
+ DictionaryIdentifierNamesGenerator: 'dictionary';
|
|
|
+ HexadecimalIdentifierNamesGenerator: 'hexadecimal';
|
|
|
+ MangledIdentifierNamesGenerator: 'mangled';
|
|
|
}> = MakeEnum({
|
|
|
DictionaryIdentifierNamesGenerator: 'dictionary',
|
|
|
HexadecimalIdentifierNamesGenerator: 'hexadecimal',
|