@esb-market-contracts/admin-backend 1.0.6 → 1.0.8

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.
Files changed (3) hide show
  1. package/hono.d.ts +1 -4
  2. package/package.json +1 -1
  3. package/types.d.ts +0 -17
package/hono.d.ts CHANGED
@@ -37,9 +37,6 @@ declare const playgroundRouter: import("hono/hono-base").HonoBase<import("hono/t
37
37
  };
38
38
  };
39
39
  }, "/playground", "/playground">;
40
-
41
- export {
42
- playgroundRouter as PlaygroundRouter,
43
- };
40
+ export type PlaygroundRouter = typeof playgroundRouter;
44
41
 
45
42
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esb-market-contracts/admin-backend",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -1,20 +1,3 @@
1
1
  // Generated by dts-bundle-generator v9.5.1
2
2
 
3
- export type SomeType = {
4
- someFunction: (input: string) => Promise<string>;
5
- anotherFunction: (input: number) => Promise<number>;
6
- };
7
- export interface SomeInterface {
8
- someProperty: string;
9
- anotherProperty: number;
10
- }
11
- declare const someConstant: "This is a constant value";
12
- export type SomeConstantType = typeof someConstant;
13
- export interface SomeGenericInterface<T> {
14
- data: T;
15
- getData: () => T;
16
- }
17
- declare function someUtilityFunction<T>(input: T): T;
18
- export type SomeUtilityFunctionType = typeof someUtilityFunction;
19
-
20
3
  export {};