UNPKG

982 BTypeScriptView Raw
1import { WordlistOwl } from "./wordlist-owl.js";
2/**
3 * An OWL-A format Wordlist extends the OWL format to add an
4 * overlay onto an OWL format Wordlist to support diacritic
5 * marks.
6 *
7 * This class is generally not useful to most developers as
8 * it is used mainly internally to keep Wordlists for languages
9 * based on latin-1 small.
10 *
11 * If necessary, there are tools within the ``generation/`` folder
12 * to create the necessary data.
13 */
14export declare class WordlistOwlA extends WordlistOwl {
15 #private;
16 /**
17 * Creates a new Wordlist for %%locale%% using the OWLA %%data%%
18 * and %%accent%% data and validated against the %%checksum%%.
19 */
20 constructor(locale: string, data: string, accent: string, checksum: string);
21 /**
22 * The OWLA-encoded accent data.
23 */
24 get _accent(): string;
25 /**
26 * Decode all the words for the wordlist.
27 */
28 _decodeWords(): Array<string>;
29}
30//# sourceMappingURL=wordlist-owla.d.ts.map
\No newline at end of file