chore(web): strong typing (#2339)
This commit is contained in:
@@ -2,13 +2,13 @@ import { get } from './base'
|
||||
import type { CurrentPlanInfoBackend, SubscriptionUrlsBackend } from '@/app/components/billing/type'
|
||||
|
||||
export const fetchCurrentPlanInfo = () => {
|
||||
return get<Promise<CurrentPlanInfoBackend>>('/features')
|
||||
return get<CurrentPlanInfoBackend>('/features')
|
||||
}
|
||||
|
||||
export const fetchSubscriptionUrls = (plan: string, interval: string) => {
|
||||
return get<Promise<SubscriptionUrlsBackend>>(`/billing/subscription?plan=${plan}&interval=${interval}`)
|
||||
return get<SubscriptionUrlsBackend>(`/billing/subscription?plan=${plan}&interval=${interval}`)
|
||||
}
|
||||
|
||||
export const fetchBillingUrl = () => {
|
||||
return get<Promise<{ url: string }>>('/billing/invoices')
|
||||
return get<{ url: string }>('/billing/invoices')
|
||||
}
|
||||
|
Reference in New Issue
Block a user