wirejs-resources 0.1.6-alpha → 0.1.7-alpha

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 (2) hide show
  1. package/lib/types.ts +2 -2
  2. package/package.json +1 -1
package/lib/types.ts CHANGED
@@ -11,6 +11,6 @@ export declare class Resource extends ResourceBase {};
11
11
  export declare class Context extends ContextBase {};
12
12
  export declare class AuthenticationService extends AuthenticationServiceBase {};
13
13
  export declare class FileService extends FileServiceBase {};
14
- export declare function withContext(): typeof withContextBase;
15
- export declare function requiresContext(): typeof requiresContextBase;
14
+ export declare const withContext: typeof withContextBase;
15
+ export declare const requiresContext: typeof requiresContextBase;
16
16
  export declare const overrides: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wirejs-resources",
3
- "version": "0.1.6-alpha",
3
+ "version": "0.1.7-alpha",
4
4
  "description": "Basic services and server-side resources for wirejs apps",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",