UNPKG

caccl-api

Version:

A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.

10 lines (9 loc) 354 B
import SharedArgs from '../types/APIConfig'; import VisitEndpointFunc from '../types/VisitEndpointFunc'; /** * Generate a visitEndpoint function * @param defaults defaults to use when visiting endpoints * @returns visitEndpoint function */ declare const genVisitEndpoint: (defaults: SharedArgs) => VisitEndpointFunc; export default genVisitEndpoint;