mirror of
https://github.com/stackblitz/bolt.new
synced 2025-06-26 18:17:50 +00:00
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
export interface SubscriptionPlan {
|
|
_id: string;
|
|
name: string;
|
|
tokens: number;
|
|
price: number;
|
|
description: string;
|
|
save_percentage: number | null;
|
|
}
|