mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-04 14:45:06 -05:00
This is a squash merge of a bajillion messy small commits created while iterating on the UI component library and redesign.
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
import type { DeleteImageState } from './types';
|
|
|
|
export const initialDeleteImageState: DeleteImageState = {
|
|
imagesToDelete: [],
|
|
isModalOpen: false,
|
|
};
|