7 lines
111 B
TypeScript
7 lines
111 B
TypeScript
declare const morse: {
|
|
encode(txt: string): string;
|
|
decode(morse: string): string;
|
|
};
|
|
|
|
export = morse;
|