Skip to content

react-query-firebase / UseSignInWithCustomTokenMutationOptions

Type Alias: UseSignInWithCustomTokenMutationOptions

ts
type UseSignInWithCustomTokenMutationOptions = object;

Defined in: src/web/auth/useSignInWithCustomToken.ts:11

Properties

options?

ts
optional options: Omit<UseMutationOptions<UserCredential, FirebaseError, {
  customToken: string;
}>, "mutationFn">;

Defined in: src/web/auth/useSignInWithCustomToken.ts:15

Options for useMutation hook excluding mutationFn. MutationKey will be equal to reference.path by default.

Released under the MIT License.