part of '../table.dart'; abstract class ITableRepository { Future> fetchTables({ int page = 1, int limit = 50, }); Future> createTable({ required String name, required int capacity, }); Future> updatePosition({ required String id, required Offset position, }); }