vending-machine/mobile/node_modules/licia/morse.d.ts
2026-04-03 06:07:13 +08:00

7 lines
111 B
TypeScript

declare const morse: {
encode(txt: string): string;
decode(morse: string): string;
};
export = morse;