Add: Success object

This commit is contained in:
2024-05-16 12:25:00 +03:00
parent 4975c0b34f
commit 5d2c9c5f9a
5 changed files with 18 additions and 16 deletions
-4
View File
@@ -1,4 +0,0 @@
export type Error = {
error: boolean,
msg: string
};
+8
View File
@@ -0,0 +1,8 @@
export type Error = {
error: boolean,
msg: string,
};
export type Success = {
success: boolean,
};