mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-06 04:05:00 -05:00
6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
export const controlNetImageProcessed = createAction<{
|
|
controlNetId: string;
|
|
}>('controlNet/imageProcessed');
|