(input: any, init?: any)
| 13 | } |
| 14 | |
| 15 | const cachedFetch = (input: any, init?: any) => |
| 16 | // @ts-ignore |
| 17 | // eslint-disable-next-line @typescript-eslint/no-unsafe-return, @typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-argument |
| 18 | fetch(input, { |
| 19 | ...init, |
| 20 | cache: 'no-store', |
| 21 | }); |
| 22 | |
| 23 | const client = new Client({ |
| 24 | url: dbUrl, |