Shared: Fixed type.

This commit is contained in:
Tatiana Lopaeva 2024-08-07 16:47:17 +03:00
parent 024e5de12b
commit 46bfdde9fc

View File

@ -24,6 +24,7 @@
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import { TError } from "../../utils/axiosClient";
import { TariffState } from "../../enums";
export type TQuotas = { id: number; quantity: number };
@ -129,5 +130,5 @@ export type TTenantExtra = {
export type TRestoreProgress = {
progress: number;
error?: any;
error?: TError;
};