From 8fe2c3034e0d05c826b752240e7278707f2bbf14 Mon Sep 17 00:00:00 2001 From: Steve Worley Date: Thu, 14 Sep 2023 15:06:03 +1000 Subject: [PATCH] Update to use request import. --- src/interfaces.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces.ts b/src/interfaces.ts index 6aa57f9..a156c12 100644 --- a/src/interfaces.ts +++ b/src/interfaces.ts @@ -1,5 +1,5 @@ import type * as types from './types' -import type * as request from 'request' +import type * as request from '@cypress/request' export type ClientConstructor = new (baseUrl: string, headers: object) => Client