File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 2
2
3
3
// deno-lint-ignore-file no-console
4
4
5
- import { ArrayResultError } from "../src/mod .ts" ;
5
+ import { ArrayResultError } from "../src/array_result .ts" ;
6
6
import { PositionedError } from "../src/parser/parser_lib.ts" ;
7
7
import { dictionaryParser } from "./parser.ts" ;
8
8
import { Dictionary } from "./type.ts" ;
Original file line number Diff line number Diff line change @@ -6,15 +6,6 @@ import { ArrayResultError } from "./array_result.ts";
6
6
import { settings } from "./settings.ts" ;
7
7
import { translate as rawTranslate } from "./translator/translator.ts" ;
8
8
9
- export { ArrayResultError , type ArrayResultOptions } from "./array_result.ts" ;
10
- export { loadCustomDictionary } from "./dictionary.ts" ;
11
- export {
12
- defaultSettings ,
13
- type RedundancySettings ,
14
- type Settings ,
15
- settings ,
16
- } from "./settings.ts" ;
17
-
18
9
export function translate ( tokiPona : string ) : ReadonlyArray < string > {
19
10
const arrayResult = rawTranslate ( tokiPona ) ;
20
11
if ( ! arrayResult . isError ( ) ) {
You can’t perform that action at this time.
0 commit comments