UNPKG

@selfcommunity/api-services

Version:
10 lines (9 loc) 222 B
import { HttpMethod } from '../client'; export interface EndpointType { url: (params?: any) => string; method: HttpMethod; } declare const Endpoints: { [key: string]: EndpointType; }; export default Endpoints;