@bool-ts/core 1.5.4 → 1.5.5

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,2 @@
1
+ export interface IController<T = any> {
2
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ export interface IModule<T = any> {
2
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bool-ts/core",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -0,0 +1,3 @@
1
+ export interface IDispatcher<T = any> {
2
+ execute(...args: any[]): T;
3
+ }
@@ -0,0 +1,3 @@
1
+ export interface IGuard {
2
+ enforce(...args: any[]): boolean | Promise<boolean>;
3
+ }
@@ -0,0 +1,3 @@
1
+ export interface IMiddleware<T = any> {
2
+ enforce(...args: any[]): T;
3
+ }
File without changes
File without changes
File without changes
File without changes