UNPKG

event-app-api

Version:

Package for easy access to Event App API

7 lines (6 loc) 672 B
import { Exhibition } from "../event/types"; import { Session } from "../sessions/types"; import { PublicEventItem, ResponsePaginationType } from "./types"; export declare const _fetchAllPublicEvents: (basePath: string, token: string, nbPage?: number, params?: string) => Promise<ResponsePaginationType<PublicEventItem>>; export declare const _fetchPublicExhibitions: (basePath: string, token: string, eventId: string, nbPage?: number, params?: string) => Promise<ResponsePaginationType<Exhibition>>; export declare const _fetchPublicAgenda: (basePath: string, token: string, eventId: string, nbPage?: number, params?: string) => Promise<ResponsePaginationType<Session>>;