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 2994ec0 commit c6eb6c0Copy full SHA for c6eb6c0
src/Shared/Components/Plugin/types.ts
@@ -250,3 +250,14 @@ export interface PluginTagsContainerProps {
250
export interface PluginImageContainerProps extends Pick<ImageWithFallbackProps, 'imageProps'> {
251
fallbackImageClassName?: string
252
}
253
+
254
+export enum TaskActionModalType {
255
+ DELETE = 'DELETE',
256
+ MOVE_PLUGIN = 'MOVE_PLUGIN',
257
+}
258
259
+export interface TaskActionModalStateType {
260
+ type: TaskActionModalType
261
+ pluginId: PluginDetailType['id']
262
+ taskIndex: number
263
0 commit comments