fix type mergedPrivilege
This commit is contained in:
parent
724d17fe75
commit
d40b241e5b
@ -6,7 +6,7 @@ export type Privilege = {
|
|||||||
description: string;
|
description: string;
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
name: string;
|
name: string;
|
||||||
price: string;
|
price: number;
|
||||||
privilegeId: string;
|
privilegeId: string;
|
||||||
serviceKey: string;
|
serviceKey: string;
|
||||||
type: "count" | "day" | "mb";
|
type: "count" | "day" | "mb";
|
||||||
|
@ -7,7 +7,7 @@ export type mergedPrivilege = {
|
|||||||
description: string;
|
description: string;
|
||||||
isDeleted?: boolean;
|
isDeleted?: boolean;
|
||||||
name: string;
|
name: string;
|
||||||
price: string | number;
|
price: number;
|
||||||
privilegeId: string;
|
privilegeId: string;
|
||||||
serviceKey: string;
|
serviceKey: string;
|
||||||
type: "count" | "day" | "mb";
|
type: "count" | "day" | "mb";
|
||||||
|
Loading…
Reference in New Issue
Block a user