/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/dashboard/src/api/billing.ts
7 строк
314 B
Adam Chmara
chore(root): apply biome formatter & linter fixes NV-6436 (#8838)
31 июл 2025, 14:59
Не верифицирован
31 июл 2025, 14:59
855fb8f
Код
Авторство
О чём код?
import type { GetSubscriptionDto, IEnvironment } from '@novu/shared'; import { get } from './api.client'; export async function getSubscription({ environment }: { environment: IEnvironment }) { const { data } = await get<{ data: GetSubscriptionDto }>('/billing/subscription', { environment }); return data; }