wasm-ast-types 0.26.1 → 0.26.3

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wasm-ast-types",
3
- "version": "0.26.1",
3
+ "version": "0.26.3",
4
4
  "description": "CosmWasm TypeScript AST generation",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/pyramation/cosmwasm-typescript-gen/tree/master/packages/wasm-ast-types#readme",
@@ -88,5 +88,5 @@
88
88
  "case": "1.6.3",
89
89
  "deepmerge": "4.2.2"
90
90
  },
91
- "gitHead": "0cad0afb48264cc726c06a6ff7a1453e7cabb4b5"
91
+ "gitHead": "dfa17766765676da28c11922b711cd65aa6306ee"
92
92
  }
@@ -5,8 +5,8 @@ export interface ImportObj {
5
5
  path: string;
6
6
  importAs?: string;
7
7
  }
8
- export type GetUtilFn = (<TContext = RenderContext>(...args: any[]) => (context: TContext) => ImportObj);
9
- export type UtilMapping = {
8
+ export declare type GetUtilFn = (<TContext = RenderContext>(...args: any[]) => (context: TContext) => ImportObj);
9
+ export declare type UtilMapping = {
10
10
  [key: string]: ImportObj | string | GetUtilFn;
11
11
  };
12
12
  export declare const UTILS: {