@webhare/moodle-webservice
Version:
Moodle Web Service API client with intellisense and typechecking
10 lines (9 loc) • 382 B
TypeScript
import IMoodleWSParams from './IMoodleWSParams';
export default interface IMoodleWSAuth {
email: {
/** Get the signup required settings and profile fields. */
getSignupSettings: (params: IMoodleWSParams) => Promise<any>;
/** Adds a new user (pendingto be confirmed) in the site. */
signupUser: (params: IMoodleWSParams) => Promise<any>;
};
}