feat: allow editing times in cuesheet

This commit is contained in:
Carlos Valente
2024-12-21 12:59:50 +01:00
committed by Carlos Valente
parent b38a7e5c92
commit bdd2a62cee
6 changed files with 87 additions and 49 deletions
+4
View File
@@ -28,6 +28,10 @@ declare module '@tanstack/react-table' {
interface TableMeta<TData extends RowData> {
handleUpdate: (rowIndex: number, accessor: string, payload: string, isCustom: boolean) => void;
handleUpdateTimer: (eventId: string, field: TimeField, payload: string) => void;
options: {
showDelayedTimes: boolean;
hideTableSeconds: boolean;
};
}
}