restore sorting UI for workflow library

This commit is contained in:
Mary Hipp
2024-10-08 15:15:35 -04:00
committed by psychedelicious
parent db25be3ba2
commit a28cabdf97
5 changed files with 154 additions and 7 deletions

View File

@@ -165,6 +165,8 @@ export type Graph = S['Graph'];
export type NonNullableGraph = O.Required<Graph, 'nodes' | 'edges'>;
export type Batch = S['Batch'];
export type SessionQueueItemDTO = S['SessionQueueItemDTO'];
export type WorkflowRecordOrderBy = S['WorkflowRecordOrderBy'];
export type SQLiteDirection = S['SQLiteDirection'];
export type WorkflowRecordListItemDTO = S['WorkflowRecordListItemDTO'];
type KeysOfUnion<T> = T extends T ? keyof T : never;