Skip to content
Snippets Groups Projects
Verified Commit fb24975c authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

chore: change imports

parent 399c3560
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,6 @@
import { internalSymbol, instanceSymbol } from "../../../constants.mjs";
import { isObject } from "../../../types/is.mjs";
import { Server } from "../server.mjs";
import { Pathfinder } from "../../pathfinder.mjs";
import { Pipe } from "../../pipe.mjs";
import { WriteError } from "./restapi/writeerror.mjs";
export { RestAPI };
......
......@@ -5,6 +5,8 @@
* License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
*/
import {hasObjectLink, getLinkedObjects,addToObjectLink} from "../dom/attributes.mjs";
import {getLocaleOfDocument} from "../dom/locale.mjs";
import {BaseWithOptions} from "../types/basewithoptions.mjs";
import {Locale} from "./locale.mjs";
import {Translations} from "./translations.mjs";
......
......@@ -7,7 +7,7 @@
import {internalSymbol} from "../../constants.mjs";
import {extend} from "../../data/extend.mjs";
import { getGlobalObject } from "../../types/global.mjs";
import {getDocument} from "../../dom/util.mjs";
import {isString} from "../../types/is.mjs";
import {validateObject, validateString} from "../../types/validate.mjs";
import {parseLocale} from "../locale.mjs";
......
......@@ -5,12 +5,16 @@
* License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
*/
import { getLinkedObjects,hasObjectLink} from "../dom/attributes.mjs";
import {getDocument} from "../dom/util.mjs";
import {Base} from "../types/base.mjs";
import {isObject, isString} from "../types/is.mjs";
import { validateInstance, validateInteger, validateObject, validateString } from "../types/validate.mjs";
import {validateInteger, validateObject, validateString} from "../types/validate.mjs";
import {Locale, parseLocale} from "./locale.mjs";
import {translationsLinkSymbol} from "./provider.mjs";
export { Translations };
export {Translations, getDocumentTranslations};
/**
* With this class you can manage translations and access the keys.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment