11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
|
|
||
|
// wordlists/wordlists-browser.js
|
||
|
|
||
|
import { langEn as en } from "./lang-en.js";
|
||
|
|
||
|
import type { Wordlist } from "./wordlist.js";
|
||
|
|
||
|
export const wordlists: Record<string, Wordlist> = Object.freeze({
|
||
|
en
|
||
|
});
|