Type Alias DeleteBase<TPath, TData, TType, TExtraData>Not Exported

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

Type Parameters

  • TPath extends string
  • TData = any
  • TType extends MutationMode = "many"
  • TExtraData = any