Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /** * Cornerstone AI events */ enum Events { /** * Triggers when the AI model loading starts. */ MODEL_LOADING_STARTED = 'AI_MODEL_LOADING_STARTED', /** * Triggers when the AI model loading is completed. */ MODEL_LOADING_COMPLETED = 'AI_MODEL_LOADING_COMPLETED', /** * Triggers when a component of the AI model is loaded. */ MODEL_COMPONENT_LOADED = 'AI_MODEL_COMPONENT_LOADED', } export default Events; |