tweak: price type
This commit is contained in:
+6
-6
@@ -3,14 +3,14 @@ export interface EntityId {
|
||||
}
|
||||
export type Theme = "auto" | "dark" | "light";
|
||||
export type AuthType = "register" | "login";
|
||||
export type PriceType = "subscription" | "payment";
|
||||
export type PriceType = "subscription" | "payment" | "booking";
|
||||
export type PriceSubscriptionDuration = "month" | "quarter" | "year";
|
||||
export type Price = {
|
||||
title: string,
|
||||
price: string,
|
||||
limit: number,
|
||||
pid: string,
|
||||
desc: string,
|
||||
title?: string,
|
||||
price?: string,
|
||||
limit?: number,
|
||||
pid?: string,
|
||||
desc?: string,
|
||||
type: PriceType,
|
||||
sub_dur?: PriceSubscriptionDuration
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user