@sarahisweird/hmoog
Version:
Out-of-game automation for Hackmud
16 lines (15 loc) • 474 B
TypeScript
export declare const corruptionCharReplacements: {
'\u00A1': string;
'\u00A2': string;
'\u00A4': string;
'\u00A6': string;
'\u00A7': string;
'\u00A8': string;
'\u00A9': string;
ª: string;
Á: string;
Ã: string;
};
export type CorruptionChar = keyof typeof corruptionCharReplacements;
export declare const isCorruptionChar: (c: string) => c is CorruptionChar;
export type CorruptionReplacementTable = Record<CorruptionChar, string>;