@ozdemirburak/morse-code-translator
Version:
Morse code translator helps you convert text to Morse code and vice versa, with the option to play Morse code audio.
11 lines • 456 B
TypeScript
import { Characters, Options } from './types.js';
declare const getCharacters: (options: Options) => {
'0': Record<string, string>;
'1': {
[x: string]: string;
};
};
declare const getMappedCharacters: (options: Options, usePriority: boolean) => Characters;
declare const swapCharacters: (options: Options) => Record<string, string>;
export { getCharacters, getMappedCharacters, swapCharacters };
//# sourceMappingURL=characters.d.ts.map