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

chore: commit save point

parent c2f78863
No related branches found
No related tags found
No related merge requests found
/** /**
* Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Copyright schukai GmbH and contributors 2022. All Rights Reserved.
* Node module: @schukai/monster * Node module: @schukai/monster
...@@ -7,7 +5,6 @@ ...@@ -7,7 +5,6 @@
* License text available at https://www.gnu.org/licenses/agpl-3.0.en.html * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
*/ */
import {Base} from '../types/base.mjs'; import {Base} from '../types/base.mjs';
import {getGlobalFunction, getGlobalObject} from '../types/global.mjs'; import {getGlobalFunction, getGlobalObject} from '../types/global.mjs';
import {validateInstance, validateString} from "../types/validate.mjs"; import {validateInstance, validateString} from "../types/validate.mjs";
...@@ -19,13 +16,6 @@ export {Template} ...@@ -19,13 +16,6 @@ export {Template}
/** /**
* The template class provides methods for creating templates. * The template class provides methods for creating templates.
* *
* ```
* <script type="module">
* import {Template} from '@schukai/monster/source/dom/template.mjs';
* new Template()
* </script>
* ```
*
* @license AGPLv3 * @license AGPLv3
* @since 1.6.0 * @since 1.6.0
* @copyright schukai GmbH * @copyright schukai GmbH
......
/** /**
* Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Copyright schukai GmbH and contributors 2022. All Rights Reserved.
* Node module: @schukai/monster * Node module: @schukai/monster
...@@ -7,7 +5,6 @@ ...@@ -7,7 +5,6 @@
* License text available at https://www.gnu.org/licenses/agpl-3.0.en.html * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
*/ */
import {Base} from '../types/base.mjs'; import {Base} from '../types/base.mjs';
import {getGlobalObject} from '../types/global.mjs'; import {getGlobalObject} from '../types/global.mjs';
import {validateString} from "../types/validate.mjs"; import {validateString} from "../types/validate.mjs";
...@@ -18,22 +15,7 @@ export {Theme, getDocumentTheme} ...@@ -18,22 +15,7 @@ export {Theme, getDocumentTheme}
/** /**
* The Theme class provides the functionality for the theme. * The Theme class provides the functionality for the theme.
* *
* ``` * @externalExample ../../example/dom/theme.mjs
* <script type="module">
* import {Theme} from '@schukai/monster/source/dom/theme.mjs';
* console.log(new Theme())
* </script>
* ```
*
* @example
*
* import {getDocumentTheme} from '@schukai/monster/source/dom/theme.mjs';
*
* const theme = getDocumentTheme();
* console.log(theme.getName());
* // ↦ monster
*
* @license AGPLv3
* @license AGPLv3 * @license AGPLv3
* @since 1.7.0 * @since 1.7.0
* @copyright schukai GmbH * @copyright schukai GmbH
......
/** /**
* Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Copyright schukai GmbH and contributors 2022. All Rights Reserved.
* Node module: @schukai/monster * Node module: @schukai/monster
...@@ -8,8 +5,6 @@ ...@@ -8,8 +5,6 @@
* License text available at https://www.gnu.org/licenses/agpl-3.0.en.html * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
*/ */
import {internalSymbol} from "../../constants.mjs"; import {internalSymbol} from "../../constants.mjs";
import {Base} from "../../types/base.mjs"; import {Base} from "../../types/base.mjs";
import {getGlobal, getGlobalFunction} from "../../types/global.mjs"; import {getGlobal, getGlobalFunction} from "../../types/global.mjs";
...@@ -21,13 +16,6 @@ export {Factory} ...@@ -21,13 +16,6 @@ export {Factory}
/** /**
* A factory for creating worker instances. * A factory for creating worker instances.
* *
* ```
* <script type="module">
* import {Factory} from '@schukai/monster/source/dom/worker/factory.mjs';
* console.log(new Factory())
* </script>
* ```
*
* @license AGPLv3 * @license AGPLv3
* @since 1.25.0 * @since 1.25.0
* @copyright schukai GmbH * @copyright schukai GmbH
...@@ -36,7 +24,6 @@ export {Factory} ...@@ -36,7 +24,6 @@ export {Factory}
*/ */
class Factory extends Base { class Factory extends Base {
/** /**
* *
*/ */
......
/** /**
* In this namespace you will find classes and methods for handling the DOM. * In this namespace you will find classes and methods for handling the DOM.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment