11 lines
323 B
TypeScript
11 lines
323 B
TypeScript
import { api as api } from '../../api';
|
|
|
|
export async function getSponsorshipPricing(): Promise<any> {
|
|
const dto = await api.sponsors.getPricing();
|
|
return dto;
|
|
}
|
|
|
|
export async function getSponsorSponsorships(sponsorId: string): Promise<any> {
|
|
const dto = await api.sponsors.getSponsorships(sponsorId);
|
|
return dto;
|
|
} |