chart2music
Version:
Turns charts into music so the blind can hear data
10 lines (9 loc) • 307 B
TypeScript
import en from "./en";
import de from "./de";
import es from "./es";
import fr from "./fr";
import it from "./it";
import hmn from "./hmn";
export type translationDict = Record<string, string>;
export type translateEvaluators = Record<string, string | number | boolean>;
export { en, de, es, fr, it, hmn };