chore(client/ts): port bulk_actions/label

This commit is contained in:
Elian Doran 2024-12-21 15:05:41 +02:00
parent b14cb4e3ce
commit 6f0d6a968d
No known key found for this signature in database
5 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@ interface ActionDefinition {
oldRelationName?: string; oldRelationName?: string;
newRelationName?: string; newRelationName?: string;
newTitle?: string; newTitle?: string;
labelName?: string;
labelValue?: string;
oldLabelName?: string;
newLabelName?: string;
} }
export default abstract class AbstractBulkAction { export default abstract class AbstractBulkAction {