8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
import type { Price } from "../../productModels/priceModels/priceModels";
|
|
|
|
export type StripeItemSpec = {
|
|
stripePriceId: string; // stripe price ID
|
|
quantity?: number;
|
|
autumnPrice?: Price;
|
|
};
|