cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
21 lines (20 loc) • 737 B
TypeScript
/**
* Object containing URLs for authentication-related endpoints.
* These URLs are used for various authentication operations such as sign-in, sign-out, etc.
*/
declare const accountsRoutesUrl: {
module: string;
/** Endpoint to get accounts year (accounts-year)
* for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
*/
financialYear: string;
/**
* Endpoint to get accounts year mapping (accounts-year-mapping)
*/
financialYearMapping: string;
/**
* Endpoint to manage financial configuration (financial-config)
*/
financialConfig: string;
};
export { accountsRoutesUrl };