New interfaces defined

This commit is contained in:
2022-08-06 16:12:47 +02:00
parent d13d883db9
commit d279298dec
6 changed files with 98 additions and 20 deletions

View File

@@ -0,0 +1,5 @@
export default interface IErrorMessage {
title: string;
message: string;
type: "error" | "success" | "warning";
}