mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 20:52:32 +00:00
* fix(navbar): Utilize Material 2 Nav Bar * fix(navbar): Revert to original navigation bar
14 lines
408 B
Dart
14 lines
408 B
Dart
abstract class LunaModuleDatabase {
|
|
/// Register all adapters necessary for this module
|
|
void registerAdapters();
|
|
|
|
/// Export the current module's database into a [Map] object
|
|
Map<String, dynamic> export();
|
|
|
|
/// Receiving a map object, import a configuration
|
|
void import(Map<String, dynamic> config);
|
|
|
|
/// Return the Database enumerator value given the key
|
|
dynamic valueFromKey(String key);
|
|
}
|