magicrealmsshared 0.2.3 → 0.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magicrealmsshared",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,4 +0,0 @@
1
- import { DATA_UPDATE, POSUPDATE } from "./ws";
2
-
3
- export type DATA_UPDATE_CLIENT = DATA_UPDATE<string>;
4
- export type POSUPDATE_CLIENT = POSUPDATE;
@@ -1,5 +0,0 @@
1
- import { ObjectId } from "mongodb";
2
- import { DATA_UPDATE, POSUPDATE } from "./ws";
3
-
4
- export type DATA_UPDATE_SERVER = DATA_UPDATE<ObjectId>;
5
- export type POSUPDATE_SERVER = POSUPDATE;
@@ -1,4 +0,0 @@
1
- import { Well } from "./types";
2
-
3
-
4
- export type Well_Client = Well<string>;
@@ -1,4 +0,0 @@
1
- import { ObjectId } from "mongodb"
2
- import { Well } from "./types";
3
-
4
- export type Well_Server = Well<ObjectId>;