Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbianca committed Feb 23, 2022
1 parent d1d6f0b commit 222e823
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion functions/useHttpsCallable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import {
import { useMemo, useState } from 'react';

export type HttpsCallableHook<RequestData = unknown, ResponseData = unknown> = [
(data?: RequestData) => Promise<HttpsCallableResult<ResponseData> | undefined>,
(
data?: RequestData
) => Promise<HttpsCallableResult<ResponseData> | undefined>,
boolean,
Error | undefined
];
Expand Down

0 comments on commit 222e823

Please sign in to comment.