@heuteapp/core 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ export declare class HeuteBoard {
2
+ }
3
+ export default HeuteBoard;
package/dist/board.js ADDED
@@ -0,0 +1,3 @@
1
+ export class HeuteBoard {
2
+ }
3
+ export default HeuteBoard;
@@ -0,0 +1,7 @@
1
+ import HeuteBoard from "./board";
2
+ export declare class HeuteDomain {
3
+ #private;
4
+ constructor();
5
+ get dayboard(): HeuteBoard;
6
+ }
7
+ export default HeuteDomain;
package/dist/domain.js ADDED
@@ -0,0 +1,11 @@
1
+ import HeuteBoard from "./board";
2
+ export class HeuteDomain {
3
+ #dayboard;
4
+ constructor() {
5
+ this.#dayboard = new HeuteBoard();
6
+ }
7
+ get dayboard() {
8
+ return this.#dayboard;
9
+ }
10
+ }
11
+ export default HeuteDomain;
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@heuteapp/core",
3
+ "version": "0.0.0",
4
+ "description": "",
5
+ "main": "src/index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "k4yr2",
11
+ "license": "MIT",
12
+ "type": "commonjs"
13
+ }