caccl-canvas-partial-simulator
Version:
Partially simulates a Canvas instance, handling OAuth token exchanges and forwarding API requests
15 lines (14 loc) • 354 B
TypeScript
/**
* Template for LTI install XML
* @author Gabe Abrams
* @param opts object containing all args
* @param opts.appName name of the app
* @param [opts.customParams] map of custom params
*/
declare const genInstallXML: (opts: {
appName: string;
customParams: {
[k: string]: string;
};
}) => string;
export default genInstallXML;