File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -5815,6 +5815,26 @@ export type AddonNotesViewNotesWSResponse = {
58155815 warnings?: CoreWSExternalWarning[];
58165816};
58175817
5818+ /**
5819+ * Params of core_output_load_fontawesome_icon_system_map WS.
5820+ *
5821+ * WS Description: Load the mapping of moodle pix names to fontawesome icon names
5822+ */
5823+ type CoreOutputLoadFontawesomeIconSystemMapWSParams = {
5824+ themename: string; // The theme to fetch the map for.
5825+ };
5826+
5827+ /**
5828+ * Data returned by core_output_load_fontawesome_icon_system_map WS.
5829+ *
5830+ * WS Description: Load the mapping of moodle pix names to fontawesome icon names
5831+ */
5832+ export type CoreOutputLoadFontawesomeIconSystemMapWSResponse = {
5833+ component: string; // The component for the icon.
5834+ pix: string; // Value to map the icon from.
5835+ to: string; // Value to map the icon to.
5836+ }[];
5837+
58185838/**
58195839 * Params of core_question_update_flag WS.
58205840 *
You can’t perform that action at this time.
0 commit comments