platform/lib/src/defs.dart
2018-07-12 13:11:54 -04:00

7 lines
196 B
Dart

import 'dart:async';
/// Serializes a user to the session.
typedef FutureOr UserSerializer<T>(T user);
/// Deserializes a user from the session.
typedef FutureOr<T> UserDeserializer<T>(userId);