MCPcopy Create free account
hub / github.com/Monogatari/Monogatari / actions

Method actions

src/monogatari.ts:879–886  ·  view source on GitHub ↗

* @static actions - Returns the list of registered Actions. * * @return {Action[]} - List of registered Actions

()

Source from the content-addressed store, hash-verified

877 * @return {Action[]} - List of registered Actions
878 */
879 static actions () {
880 /** @type {boolean} */
881 const experimentalFeatures = this.setting ('ExperimentalFeatures');
882
883 return this._actions.filter(action => {
884 return action._experimental === false || experimentalFeatures === true;
885 });
886 }
887
888 /**
889 * @static action - Access to an specific action class

Callers 5

onStartMethod · 0.95
onLoadMethod · 0.95
setupMethod · 0.95
bindMethod · 0.95
initMethod · 0.95

Calls 1

settingMethod · 0.95

Tested by

no test coverage detected