@esb-market-contracts/admin-backend 1.0.6 → 1.0.7
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 +1 -1
- package/types.d.ts +0 -17
package/package.json
CHANGED
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 {};
|