williamyorkl/vite-plugin-proxy-middleware

Incorrect type

Opened this issue · 0 comments

On https://github.com/williamyorkl/vite-plugin-proxy-middleware/blob/main/src/index.ts#L18

It's typed as

export type proxyTableType = Record<"string", ProxyOptions> | string;

when it should be

export type proxyTableType = Record<string, ProxyOptions> | string;

I believe