15 lines
386 B
Dart
15 lines
386 B
Dart
// UI Schema Protocol Implementation.
|
|
///
|
|
/// This file is the single source of truth for UI Schema.
|
|
/// All implementations must follow docs/protocols/ui-schema.md.
|
|
///
|
|
/// Version: 1.0
|
|
library;
|
|
|
|
part 'ui_schema/enums.dart';
|
|
part 'ui_schema/common_types.dart';
|
|
part 'ui_schema/actions.dart';
|
|
part 'ui_schema/nodes.dart';
|
|
part 'ui_schema/document.dart';
|
|
part 'ui_schema/builders.dart';
|