feat: add responses package
This commit is contained in:
13
packages/responses/src/Domain/User/AvailableSubscriptions.ts
Normal file
13
packages/responses/src/Domain/User/AvailableSubscriptions.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { FeatureDescription } from '@standardnotes/features'
|
||||
import { SubscriptionName } from '@standardnotes/common'
|
||||
|
||||
export type AvailableSubscriptions = {
|
||||
[key in SubscriptionName]: {
|
||||
name: string
|
||||
pricing: {
|
||||
price: number
|
||||
period: string
|
||||
}[]
|
||||
features: FeatureDescription[]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user