mirror of
https://github.com/Wx-2025/ST-Amily2-Chat-Optimisation.git
synced 2026-06-06 05:45:51 +00:00
14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
|
|
class TableManager {
|
|
constructor() {
|
|
console.log('TableManager initialized');
|
|
}
|
|
getTableData() {
|
|
return {};
|
|
}
|
|
updateTableData(newData) {
|
|
console.log('Updating table data with:', newData);
|
|
}
|
|
}
|
|
export const tableManager = new TableManager();
|