@noego/forge 0.1.17 → 0.1.19

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/dist/client.d.ts CHANGED
@@ -1,5 +1,8 @@
1
+ /// <reference types="svelte" />
2
+
1
3
  import { ErrorRequestHandler } from 'express';
2
4
  import { RequestHandler } from 'express';
5
+ import { Writable } from 'svelte/store';
3
6
 
4
7
  declare type AssetEntry = string | RequestHandler | ErrorRequestHandler;
5
8
 
@@ -135,11 +138,11 @@ export declare function loadRoute(node: any, base_path: string, route: IRoute, c
135
138
 
136
139
  declare function makeUrlParser(pattern: string): (pathname: string) => Record<string, string> | null;
137
140
 
138
- export declare const MANIFEST_STORE: {};
141
+ export declare const MANIFEST_STORE: Writable< {}>;
139
142
 
140
143
  declare type NextFunction = (error?: any) => void;
141
144
 
142
- export declare let page: IPage;
145
+ export declare const page: Writable<IPage>;
143
146
 
144
147
  declare type Parameter = any;
145
148