uni-ticket-system/node_modules/licia/morse.d.ts

7 lines
111 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
declare const morse: {
encode(txt: string): string;
decode(morse: string): string;
};
export = morse;