bpms_site/.svn/pristine/aa/aa5b633dfe6ac48338999507373921835880ea3a.svn-base
2025-11-02 16:38:49 +03:30

6 lines
205 B
Plaintext

import type { ProxyServer } from './types';
import type { FetchHandler } from './fetch-api';
export declare function createProxyServer({ onFetch, }: {
onFetch?: FetchHandler;
}): Promise<ProxyServer>;