@hubs101/js-api-skd-client
Version:
Package for easy access to Event App API
12 lines (11 loc) • 1.08 kB
TypeScript
import { APIResponse } from "../../types/base";
import { PublicGroupResponseType } from "../authentication/types";
import { Exhibition } from "../event/types";
import { Session } from "../sessions/types";
import { PublicEventItem, ResponsePaginationType } from "./types";
export declare const _fetchAllPublicEvents: (basePath: string, nbPage?: number, params?: string) => Promise<ResponsePaginationType<PublicEventItem>>;
export declare const _fetchPublicExhibitions: (basePath: string, eventId: string, nbPage?: number, params?: string) => Promise<ResponsePaginationType<Exhibition>>;
export declare const _fetchPublicAgenda: (basePath: string, eventId: string, nbPage?: number, params?: string) => Promise<ResponsePaginationType<Session>>;
export declare const _getPublicRegistrationForm: (basePath: string, eventId: string) => Promise<any>;
export declare const _getPublicGroupDetails: <T>(basePath: string, groupId: string) => Promise<PublicGroupResponseType<T>>;
export declare const _fetchPublicEventStatistics: (basePath: string, eventId: string) => Promise<APIResponse>;