Type Alias R2StorageCountArgs<ExtArgs>

R2StorageCountArgs<ExtArgs>: Omit<R2StorageFindManyArgs,
    | "select"
    | "include"
    | "distinct"
    | "omit"> & {
    select?: R2StorageCountAggregateInputType | true;
}

Type Parameters