caccl-api
Version:
A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.
13 lines (12 loc) • 325 B
TypeScript
import APIStructure from '../../types/API';
import VisitEndpointFunc from './VisitEndpointFunc';
/**
* Arguments required for initializing an endpoint category
* @author Gabe Abrams
*/
type InitPack = {
visitEndpoint: VisitEndpointFunc;
api: APIStructure;
defaultCourseId?: number;
};
export default InitPack;