speexjs 0.2.0 → 0.2.1

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.
@@ -74,6 +74,6 @@ declare class SuperApp {
74
74
  ready(): Promise<void>;
75
75
  private handleRequest;
76
76
  }
77
- declare function constx(options?: AppOptions): SuperApp;
77
+ declare function speexjs(options?: AppOptions): SuperApp;
78
78
 
79
- export { type AppOptions, SuperApp, URLBuilder, type ViewEngine, constx, registerMacro, responseMacros, url };
79
+ export { type AppOptions, SuperApp, URLBuilder, type ViewEngine, registerMacro, responseMacros, speexjs, url };
@@ -4142,7 +4142,7 @@ var SuperApp = class {
4142
4142
  }
4143
4143
  }
4144
4144
  };
4145
- function constx(options) {
4145
+ function speexjs(options) {
4146
4146
  return new SuperApp(options);
4147
4147
  }
4148
4148
  function createControllerInstance2(controller, ctx) {
@@ -4171,7 +4171,6 @@ export {
4171
4171
  TableBlueprint,
4172
4172
  URLBuilder,
4173
4173
  cacheResponse,
4174
- constx,
4175
4174
  createDialect,
4176
4175
  createDriver,
4177
4176
  createEvent,
@@ -4179,6 +4178,7 @@ export {
4179
4178
  event,
4180
4179
  registerMacro,
4181
4180
  responseMacros,
4181
+ speexjs,
4182
4182
  storage,
4183
4183
  url
4184
4184
  };