Type Alias UpdateBase<TPath, TData, TFormData, TType, TExtraData>Not Exported

UpdateBase<TPath, TData, TFormData, TType, TExtraData>: {
    extraResources?: Resource<any>[];
    mode?: MutateMode;
    mutationOptions?: UseMutateProps<TType extends "many"
        ? QueryResponse<TData>[]
        : QueryResponse<TData>, MutateBaseVariables<TPath, TFormData, TType, TExtraData>>;
    resourcePath: Resource<TPath>["path"];
    shouldInvalidateCache?: boolean;
    shouldUpdateCurrentResource?: boolean;
    type: TType;
}

Type Parameters

  • TPath extends string
  • TData
  • TFormData
  • TType extends MutationMode
  • TExtraData