mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-22 16:37:43 +00:00

* chore: add tauri database group test * chore: add more tests * chore: enable run all tests * chore: rename test folder
19 lines
630 B
Dart
19 lines
630 B
Dart
import 'dart:collection';
|
|
|
|
import 'package:appflowy_backend/protobuf/flowy-database/database_entities.pb.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-error/errors.pb.dart';
|
|
|
|
import '../grid/presentation/widgets/filter/filter_info.dart';
|
|
import 'field/field_controller.dart';
|
|
import 'row/row_cache.dart';
|
|
|
|
typedef OnFieldsChanged = void Function(UnmodifiableListView<FieldInfo>);
|
|
typedef OnFiltersChanged = void Function(List<FilterInfo>);
|
|
typedef OnDatabaseChanged = void Function(DatabasePB);
|
|
typedef OnRowsChanged = void Function(
|
|
List<RowInfo>,
|
|
RowsChangedReason,
|
|
);
|
|
|
|
typedef OnError = void Function(FlowyError);
|