Oops, wrong annotation

This commit is contained in:
Simon Binder 2021-02-16 17:38:10 +01:00
parent b0dbee585f
commit 510fb829fe
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,9 @@ part of '../../query_builder.dart';
typedef OrderClauseGenerator<T> = OrderingTerm Function(T tbl);
/// The abstract base class for all select statements in the moor api.
@internal
///
/// Users are not allowed to extend, implement or mix-in this class.
@sealed
abstract class BaseSelectStatement extends Component {
int get _returnedColumnCount;
}