@bgord/tools 0.2.1 → 0.2.2

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/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export * from "./rounding.service";
2
+ export * from "./noop.service";
package/dist/index.js CHANGED
@@ -1 +1,2 @@
1
1
  export * from "./rounding.service";
2
+ export * from "./noop.service";
@@ -0,0 +1,2 @@
1
+ export declare function noop(): void;
2
+ export declare function anoop(): Promise<void>;
@@ -0,0 +1,2 @@
1
+ export function noop() { }
2
+ export async function anoop() { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bgord/tools",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Bartosz Gordon",