datadirect
Version:
Types for working with Blackbaud's front-end APIs
9 lines (8 loc) • 342 B
TypeScript
import * as Endpoint from '../../../../Endpoint.js';
import { Payload } from '../ContentItem.js';
import * as ContentType from '../ContentType.js';
type Options = {
plural?: boolean;
};
export declare function base(contentType: ContentType.Any, { plural }?: Options): (payload: Payload, base?: string) => Endpoint.FetchParams;
export {};