morse.d.ts 111 B

123456
  1. declare const morse: {
  2. encode(txt: string): string;
  3. decode(morse: string): string;
  4. };
  5. export = morse;