新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
import { RouteHandlerCallback, RouteHandlerCallbackOptions } from 'workbox-core/types.js';
|
|
import { StreamSource } from './_types.js';
|
|
import './_version.js';
|
|
export interface StreamsHandlerCallback {
|
|
({ url, request, event, params }: RouteHandlerCallbackOptions): Promise<StreamSource> | StreamSource;
|
|
}
|
|
/**
|
|
* A shortcut to create a strategy that could be dropped-in to Workbox's router.
|
|
*
|
|
* On browsers that do not support constructing new `ReadableStream`s, this
|
|
* strategy will automatically wait for all the `sourceFunctions` to complete,
|
|
* and create a final response that concatenates their values together.
|
|
*
|
|
* @param {Array<function({event, request, url, params})>} sourceFunctions
|
|
* An array of functions similar to {@link workbox-routing~handlerCallback}
|
|
* but that instead return a {@link workbox-streams.StreamSource} (or a
|
|
* Promise which resolves to one).
|
|
* @param {HeadersInit} [headersInit] If there's no `Content-Type` specified,
|
|
* `'text/html'` will be used by default.
|
|
* @return {workbox-routing~handlerCallback}
|
|
* @memberof workbox-streams
|
|
*/
|
|
declare function strategy(sourceFunctions: StreamsHandlerCallback[], headersInit: HeadersInit): RouteHandlerCallback;
|
|
export { strategy };
|