@awesome-ecs/abstract 0.14.1 → 0.14.3

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.
@@ -2,11 +2,11 @@
2
2
  * An ILogger instance allows printing messages to console or other targets.
3
3
  */
4
4
  export interface ILogger {
5
- log(level: LogLevel, message: string, ...args: any[]): void;
6
- trace(message: string, ...args: any[]): void;
7
- debug(message: string, ...args: any[]): void;
8
- warn(message: string, ...args: any[]): void;
9
- error(message: string, ...args: any[]): void;
5
+ log(level: LogLevel, message: any, ...args: any[]): void;
6
+ trace(message: any, ...args: any[]): void;
7
+ debug(message: any, ...args: any[]): void;
8
+ warn(message: any, ...args: any[]): void;
9
+ error(message: any, ...args: any[]): void;
10
10
  }
11
11
  export declare enum LogLevel {
12
12
  trace = 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awesome-ecs/abstract",
3
- "version": "0.14.1",
3
+ "version": "0.14.3",
4
4
  "description": "A comprehensive Entity-Component-System (ECS) Architecture implementation. Abstract components.",
5
5
  "scripts": {
6
6
  "build": "rimraf ./dist && npx tsc --build tsconfig.build.json"
@@ -61,5 +61,5 @@
61
61
  "url": "https://github.com/andreicojocaru/awesome-ecs/issues"
62
62
  },
63
63
  "homepage": "https://github.com/andreicojocaru/awesome-ecs#readme",
64
- "gitHead": "850e46cec9ea87bffd8f4e4c7ee5d53aaa1f98fe"
64
+ "gitHead": "bd258e5a274e57f45533965f7a0a6f9c8c8a55e2"
65
65
  }