From ef2a171c7679362bed6b14589d4e202e5f80ea01 Mon Sep 17 00:00:00 2001 From: Chris Talman Date: Sat, 5 Oct 2019 20:48:49 +0100 Subject: [PATCH] Fixed package name scope. --- index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index ac5f7f6..3e41875 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,8 +1,8 @@ // External Modules -import { Response } from '@bluecewe/isomorphic-fetch'; +import { Response } from '@ChrisTalman/isomorphic-fetch'; // Module -declare module '@bluecewe/request' +declare module '@ChrisTalman/request' { export type PromiseCallback = (definition: Definition) => Promise>; export const promise: PromiseCallback;