Added the IImageData interface

This commit is contained in:
Sugui 2024-03-28 09:45:03 +01:00
parent 7701d2a493
commit 954371eaa8
1 changed files with 4 additions and 0 deletions

4
src/models/IImageData.ts Normal file
View File

@ -0,0 +1,4 @@
interface IImageData {
url: string;
content: string;
}