updated infoState.ts

This commit is contained in:
2022-03-24 10:20:20 +01:00
parent 53225dffd4
commit fe7b851157

View File

@@ -1,7 +1,7 @@
import { defineStore } from "pinia"; import { defineStore } from "pinia";
export type infoState = { export type infoState = {
statuscode: number; statusCode: number;
message: string; message: string;
type: "error" | "success" | "warning"; type: "error" | "success" | "warning";
}; };