fix type mergedPrivilege

This commit is contained in:
ArtChaos189 2023-06-02 17:21:10 +03:00
parent 724d17fe75
commit d40b241e5b
2 changed files with 2 additions and 2 deletions

@ -6,7 +6,7 @@ export type Privilege = {
description: string;
isDeleted: boolean;
name: string;
price: string;
price: number;
privilegeId: string;
serviceKey: string;
type: "count" | "day" | "mb";

@ -7,7 +7,7 @@ export type mergedPrivilege = {
description: string;
isDeleted?: boolean;
name: string;
price: string | number;
price: number;
privilegeId: string;
serviceKey: string;
type: "count" | "day" | "mb";