Nikolas Rimikis
1 year ago
committed by
jld3103
11 changed files with 150 additions and 8 deletions
@ -1,4 +1,11 @@ |
|||||||
// ignore: unnecessary_library_directive |
/// Configuration for using `package:build`-compatible build systems. |
||||||
|
/// |
||||||
|
/// See: |
||||||
|
/// * [build_runner](https://pub.dev/packages/build_runner) |
||||||
|
/// |
||||||
|
/// This library is **not** intended to be imported by typical end-users unless |
||||||
|
/// you are creating a custom compilation pipeline. See documentation for |
||||||
|
/// details, and `build.yaml` for how these builders are configured by default. |
||||||
library dynamite; |
library dynamite; |
||||||
|
|
||||||
export 'src/openapi_builder.dart'; |
export 'src/openapi_builder.dart'; |
||||||
|
@ -1,3 +1,14 @@ |
|||||||
|
/// The Neon model definitions. |
||||||
|
/// |
||||||
|
/// To use, import `import 'package:neon/models.dart';`. |
||||||
|
/// |
||||||
|
/// This library provides basic data models and interfaces to build a neon |
||||||
|
/// client. |
||||||
|
/// |
||||||
|
/// {@canonicalFor label_builder.LabelBuilder} |
||||||
|
library models; |
||||||
|
|
||||||
export 'package:neon/src/models/account.dart' hide Credentials, LoginQRcode; |
export 'package:neon/src/models/account.dart' hide Credentials, LoginQRcode; |
||||||
export 'package:neon/src/models/app_implementation.dart'; |
export 'package:neon/src/models/app_implementation.dart'; |
||||||
|
export 'package:neon/src/models/label_builder.dart'; |
||||||
export 'package:neon/src/models/notifications_interface.dart'; |
export 'package:neon/src/models/notifications_interface.dart'; |
||||||
|
Loading…
Reference in new issue