diff --git a/functions/useHttpsCallable.ts b/functions/useHttpsCallable.ts index ebc0fea..d6ddb5b 100644 --- a/functions/useHttpsCallable.ts +++ b/functions/useHttpsCallable.ts @@ -6,7 +6,7 @@ import { import { useMemo, useState } from 'react'; export type HttpsCallableHook = [ - (data?: RequestData) => Promise | unknown>, + (data?: RequestData) => Promise | undefined>, boolean, Error | undefined ];