platform/fig/link/lib/link.dart

9 lines
337 B
Dart

/// A PSR-13 compatible link interface for Dart.
///
/// This library provides interfaces for working with web links following
/// the PSR-13 Link Interface specification. It includes interfaces for
/// both individual links and link providers.
library link;
export 'src/link_interface.dart';
export 'src/link_provider_interface.dart';