-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
60 lines (60 loc) · 1015 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const dictionary = {
"a": "ᔑ",
"b": "ʖ",
"c": "ᓵ",
"d": "↸",
"e": "ᒷ",
"f": "⎓",
"g": "⊣",
"h": "⍑",
"i": "╎",
"j": "⋮",
"k": "ꖌ",
"l": "ꖎ",
"m": "ᒲ",
"n": "リ",
"o": "𝙹",
"p": "!¡",
"q": "ᑑ",
"r": "∷",
"s": "ᓭ",
"t": "ℸ",
"u": "⚍",
"v": "⍊",
"w": "∴",
"x": "/",
"y": "||",
"z": "⨅",
" ": " ",
};
const reverse_dictionary = {
"ᔑ": "a",
"ʖ": "b",
"ᓵ": "c",
"↸": "d",
"ᒷ": "e",
"⎓": "f",
"⊣": "g",
"⍑": "h",
"╎": "i",
"⋮": "j",
"ꖌ": "k",
"ꖎ": "l",
"ᒲ": "m",
"リ": "n",
"𝙹": "o",
"!¡": "p",
"ᑑ": "q",
"∷": "r",
"ᓭ": "s",
"ℸ": "t",
"⚍": "u",
"⍊": "v",
"∴": "w",
"/": "x",
"||": "y",
"⨅": "z",
" ": " ",
}
export function translate(text: string, reverse: boolean): string;
export {dictionary, reverse_dictionary}