swpp-backends 0.0.2-alpha → 0.0.3-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.
- package/dist/fileAnalyzer.js +1 -1
- package/package.json +1 -1
- package/types/fileAnalyzer.d.ts +3 -0
- package/types/swppRules.d.ts +2 -0
package/dist/fileAnalyzer.js
CHANGED
package/package.json
CHANGED
package/types/fileAnalyzer.d.ts
CHANGED
package/types/swppRules.d.ts
CHANGED
|
@@ -76,6 +76,8 @@ export interface SwppRules {
|
|
|
76
76
|
* @param spare 备用 URL
|
|
77
77
|
*/
|
|
78
78
|
fetchFile?: (request: Request, banCache: boolean, spare?: SpareURLs) => Promise<Response>;
|
|
79
|
+
/** 第三方添加的值 */
|
|
80
|
+
[propName: string]: any;
|
|
79
81
|
}
|
|
80
82
|
export interface CacheRules {
|
|
81
83
|
/** 符合该规则的缓存在进行全局清理时是否清除 */
|