2024-11-15 21:47:58 +04:00
|
|
|
import 'package:mobiles_labs_5th_semester/domain/models/game.dart';
|
2024-11-19 23:39:56 +04:00
|
|
|
import 'package:mobiles_labs_5th_semester/domain/models/page_of_games_home.dart';
|
|
|
|
|
|
|
|
typedef OnErrorCallback = void Function(String? error);
|
2024-11-15 21:47:58 +04:00
|
|
|
|
|
|
|
abstract class ApiInterface {
|
2024-11-19 23:39:56 +04:00
|
|
|
Future<PageOfGames?> loadData({OnErrorCallback? onError});
|
2024-11-15 21:47:58 +04:00
|
|
|
}
|