(input: Input, options?: Options)
| 10 | const createInstance = (defaults?: Partial<Options>): KyInstance => { |
| 11 | // eslint-disable-next-line @typescript-eslint/promise-function-async |
| 12 | const ky: Partial<Mutable<KyInstance>> = (input: Input, options?: Options) => Ky.create(input, validateAndMerge(defaults, options)); |
| 13 | |
| 14 | for (const method of requestMethods) { |
| 15 | // eslint-disable-next-line @typescript-eslint/promise-function-async |