We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fac588 commit 460ecc4Copy full SHA for 460ecc4
src/Pages/ResourceBrowser/ResourceBrowser.Types.ts
@@ -76,8 +76,22 @@ export interface BulkSelectionActionWidgetProps {
76
showBulkRestartOption: boolean
77
}
78
79
+interface BulkOperationAdditionalKeysType {
80
+ label: string
81
+ value: string
82
+ isSortable: boolean
83
+ /**
84
+ * width to be given in gridTemplateColumns
85
+ */
86
+ width: string
87
+}
88
+
89
export interface BulkOperation {
90
name: string
91
92
+ * Would these keys beside the name
93
94
+ additionalKeys?: BulkOperationAdditionalKeysType[]
95
operation: (signal: AbortSignal, data?: unknown) => Promise<void>
96
97
0 commit comments